At the moment, I have a pipeline defined with 4 different stages to build dependencies for my project:
stages:
- dependencies-A
- dependencies-B
- dependencies-C
- dependencies-D
- build
Thus, the jobs in the pipeline now run like this:
A -> B -> C -> D -> build
Actually, B depends on A, and D depends on C. The sub-pipelines A->B
and C->D
being independent, I would like to run those two sub-pipelines in parallel, to speed up the build. So, that way:
A -> B \
build
C -> D /
Is that possible at all?
Thanks for your kind help.