Dhruvan Ganesh
Dhruvan Ganesh

Reputation: 1560

Jenkins start a job only after completion of multiple jobs

How do I create a job A which only runs when jobs B and C are completed, without a Jenkinsfile

Upvotes: 1

Views: 801

Answers (1)

Cédric Julien
Cédric Julien

Reputation: 80761

What you need is probably the Jenkins Join plugin which will allow you to trigger a job (let's call it A) after completion of B and C (that can be done in parallel).

Here is the graphical description of what this plugin do (the red part ;) ) : enter image description here

Upvotes: 1

Related Questions