engine: Task PreRun Hook
Tasks now have a PreRun hook that gets called before buildkit kicks in. Allows to support local access without special casing. Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
@@ -29,6 +29,12 @@ type Task interface {
|
||||
Run(ctx context.Context, pctx *plancontext.Context, s solver.Solver, v *compiler.Value) (*compiler.Value, error)
|
||||
}
|
||||
|
||||
type PreRunner interface {
|
||||
Task
|
||||
|
||||
PreRun(ctx context.Context, pctx *plancontext.Context, v *compiler.Value) error
|
||||
}
|
||||
|
||||
// Register a task type and initializer
|
||||
func Register(typ string, f NewFunc) {
|
||||
tasks.Store(typ, f)
|
||||
|
Reference in New Issue
Block a user