Re: one downstream with multiple upstreams(all upstreams should be success)

2020-09-02 Thread Ven H
> *From:* jenkinsci-users@googlegroups.com > *On Behalf Of *chenna kesavulu > *Sent:* Dienstag, 1. September 2020 22:23 > *To:* jenkinsci-users@googlegroups.com > *Subject:* Re: one downstream with multiple upstreams(all upstreams > should be success) > > > > Hi Gianl

RE: one downstream with multiple upstreams(all upstreams should be success)

2020-09-01 Thread Reinhold Füreder
: jenkinsci-users@googlegroups.com On Behalf Of chenna kesavulu Sent: Dienstag, 1. September 2020 22:23 To: jenkinsci-users@googlegroups.com Subject: Re: one downstream with multiple upstreams(all upstreams should be success) Hi Gianluca, I can't trigger Job D directly from Job A. Actual

Re: one downstream with multiple upstreams(all upstreams should be success)

2020-09-01 Thread chenna kesavulu
Hi Gianluca, I can't trigger Job D directly from Job A. Actually in my project we are running integration tests in Job B and UI tests in Job C. So if both the builds are green then only i can merge the code to master in Job D. But thanks for your answer I will try it. Thanks, Keshav. On Wed, S

Re: one downstream with multiple upstreams(all upstreams should be success)

2020-09-01 Thread Gianluca
Hi, why not triggering Job D directly from job A ? In this way, if you put that in a stage after job B and job C is triggered ... it will only be triggered if both succedded: stage("Run B and C") { steps { parallel( "job B": { buildJob ... }, "job C:" { build Job ... }, } stag

one downstream with multiple upstreams(all upstreams should be success)

2020-09-01 Thread chenna keshav
Hi, i have stuck with a small issue... i have a job A which triggers job B and job C. for job B and job C downstream job is job D i need this job D is to be triggered when job B and job C both are success. i have tried with "Build after other projects are build" with "trigger only if build