mirror of https://github.com/databricks/cli.git
33 lines
736 B
Go
33 lines
736 B
Go
// Package phases defines build phases as logical groups of [bundle.Mutator] instances.
|
|
package phases
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/databricks/bricks/bundle"
|
|
"github.com/databricks/bricks/libs/log"
|
|
)
|
|
|
|
// This phase type groups mutators that belong to a lifecycle phase.
|
|
// It expands into the specific mutators when applied.
|
|
type phase struct {
|
|
name string
|
|
mutators []bundle.Mutator
|
|
}
|
|
|
|
func newPhase(name string, mutators []bundle.Mutator) bundle.Mutator {
|
|
return &phase{
|
|
name: name,
|
|
mutators: mutators,
|
|
}
|
|
}
|
|
|
|
func (p *phase) Name() string {
|
|
return p.name
|
|
}
|
|
|
|
func (p *phase) Apply(ctx context.Context, b *bundle.Bundle) ([]bundle.Mutator, error) {
|
|
log.Infof(ctx, "Phase: %s", p.Name())
|
|
return p.mutators, nil
|
|
}
|