MCPcopy Create free account
hub / github.com/devspace-sh/devspace / pipeline

Struct pipeline

pkg/devspace/pipeline/pipeline.go:47–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45}
46
47type pipeline struct {
48 m sync.Mutex
49
50 excluded bool
51 excludedErr error
52
53 options types.Options
54
55 // name is the devspace config name, not the name of the pipeline
56 name string
57
58 devPodManager devpod.Manager
59 dependencyRegistry registry.DependencyRegistry
60
61 dependencies map[string]types.Pipeline
62 parent types.Pipeline
63
64 main *Job
65 jobs map[string]*Job
66}
67
68func (p *pipeline) Done() <-chan struct{} {
69 return p.main.Done()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected