a90ff8ab94
Signed-off-by: Joel Longtine <joel@dagger.io>
25 lines
501 B
Go
25 lines
501 B
Go
package task
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go.dagger.io/dagger/compiler"
|
|
"go.dagger.io/dagger/plancontext"
|
|
"go.dagger.io/dagger/solver"
|
|
)
|
|
|
|
func init() {
|
|
Register("Scratch", func() Task { return &scratchTask{} })
|
|
}
|
|
|
|
type scratchTask struct {
|
|
}
|
|
|
|
func (t *scratchTask) Run(ctx context.Context, pctx *plancontext.Context, s solver.Solver, v *compiler.Value) (*compiler.Value, error) {
|
|
fs := pctx.FS.New(nil)
|
|
|
|
return compiler.NewValue().FillFields(map[string]interface{}{
|
|
"output": fs.MarshalCUE(),
|
|
})
|
|
}
|