Reputation: 1560
How do I create a job A which only runs when jobs B and C are completed, without a Jenkinsfile
Upvotes: 1
Views: 801
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 ;) ) :
Upvotes: 1