Is it possible to create a pipline like this:
/----A-------------\
clone ------- ---- D
\----B ----- C ----/
Is it possible to create a pipline like this:
/----A-------------\
clone ------- ---- D
\----B ----- C ----/
as far as i understand: yes. drone has depends_on. it is described here:
http://discuss.harness.io/t/how-to-setup-parallel-pipeline-steps-1-0/3251
in short:
steps:
clone
a
b
c:
depends_on:
- b
d:
depends_on:
- a
- c