Reputation: 687
I want "Last Job" to trigger after execution of Jobs "A1, B3 and B4). So Main job should trigger "Job A and Job B" in parallel Then "Job A and Job B" should call "Job A1 and Job B1". Then "Job B1" should call "Job B2" Then "Job B2" should call "Job B3 and Job B4" in parallel After execution of all "Job A1, Job B3 and Job B4" "Last job" should execute
Screenshot
Jenkins jobs flow
Upvotes: 1
Views: 580
Reputation: 893
You can use Multijob plugin to achieve such workflow. In short:
In your example:
So everything will be a multijob apart from lastjob, A1, B3 and B4.
Upvotes: 1