Re: migrate downstream jobs to pipeline

2016-07-24 Thread Shurik
Do you mean something like this ? parallel one: { build 'B' build 'E' }, second: { build 'C' } build 'D' if yes, than in this situation D will be depend on E and I don't want it. On Sunday, 24 July 2016 16:31:14 UTC+3, Baptist

Re: migrate downstream jobs to pipeline

2016-07-24 Thread Baptiste Mathus
Move 'build E' instruction in the 'one' closure, just after build B. Le 24 juil. 2016 2:52 PM, "Shurik" a écrit : Hi, I have the below graph job definition ( via downstream ) and I want to migrate it to pipeline with parallel options. A /\ BC

migrate downstream jobs to pipeline

2016-07-24 Thread Shurik
Hi, I have the below graph job definition ( via downstream ) and I want to migrate it to pipeline with parallel options. A /\ BC / \ / E D A -> B, C B -> E, D C -> D B and C can run in parallel, D need to wait till B and C fin