| 45 | } |
| 46 | |
| 47 | type 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 | |
| 68 | func (p *pipeline) Done() <-chan struct{} { |
| 69 | return p.main.Done() |
nothing calls this directly
no outgoing calls
no test coverage detected