This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/plan/task/mkdir.go
Tom Chauveau 19c0f999f4
Fix export cache issue
Resolve #1551 and #1020.
We are never returning the result of solved operations so Buildkit could not
cache the layer.
This commit implements a simple system to forward operations' result to the
main build to cache it.

Signed-off-by: Vasek - Tom C <tom.chauveau@epitech.eu>
2022-03-31 20:36:50 +02:00

82 lines
1.6 KiB
Go

package task
import (
"context"
"io/fs"
"cuelang.org/go/cue"
"github.com/moby/buildkit/client/llb"
"go.dagger.io/dagger/compiler"
"go.dagger.io/dagger/plancontext"
"go.dagger.io/dagger/solver"
)
func init() {
Register("Mkdir", func() Task { return &mkdirTask{} })
}
type mkdirTask struct {
}
func (t *mkdirTask) Run(ctx context.Context, pctx *plancontext.Context, s *solver.Solver, v *compiler.Value) (*compiler.Value, error) {
path, err := v.Lookup("path").String()
if err != nil {
return nil, err
}
// Permissions (int)
permissions, err := v.Lookup("permissions").Int64()
if err != nil {
return nil, err
}
// Retrieve options
mkdirOpts := []llb.MkdirOption{}
var opts struct {
Parents bool
}
if err := v.Decode(&opts); err != nil {
return nil, err
}
if opts.Parents {
mkdirOpts = append(mkdirOpts, llb.WithParents(true))
}
// Retrieve input Filesystem
input, err := pctx.FS.FromValue(v.Lookup("input"))
if err != nil {
return nil, err
}
// Retrieve input llb state
inputState, err := input.State()
if err != nil {
return nil, err
}
// Add Mkdir operation on input llb state
outputState := inputState.File(
llb.Mkdir(path, fs.FileMode(permissions), mkdirOpts...),
withCustomName(v, "Mkdir %s", path),
)
// Compute state
result, err := s.Solve(ctx, outputState, pctx.Platform.Get())
if err != nil {
return nil, err
}
// Retrieve result result filesystem
outputFS := pctx.FS.New(result)
// Init output
output := compiler.NewValue()
if err := output.FillPath(cue.ParsePath("output"), outputFS.MarshalCUE()); err != nil {
return nil, err
}
return output, nil
}