-
Type: Task
-
Resolution: Fixed
-
Priority: Unknown
-
Affects Version/s: None
-
Component/s: None
-
None
Pipeline can be created as a list of stages.
$pipeline1 = new Pipeline($stage1, $stage2);
The goal it to merge pipelines together in a new pipeline.
$pipeline2 = new Pipeline($stage3, $pipeline1, $stage4);
Same as
$pipeline2 = new Pipeline($stage3, $stage1, $stage2, $stage4);