JENKINS Builds run parallel and Sequential jobs

19,532

Solution 1

Try this out https://wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Plugin

You can control you job easily in this way. Just crate a controller build flow job, manage and arrange all the job sequence there, the link provided with useful sample and usage, hope this helps :D

Solution 2

this above plugin is deprecated. you need to use - https://wiki.jenkins.io/display/JENKINS/Pipeline+Plugin

Share:
19,532
user1550159
Author by

user1550159

Updated on June 08, 2022

Comments

  • user1550159
    user1550159 almost 2 years

    I have 12 different JOBS in which few of them can run in parallel , but few of them are dependent.

    I am using MultiJob plugin and Phasing the jobs , but when one job fails the whole build is marked as failed and to resume i have to run all the steps all over again.

    Is there any way to resume the builds from where it failed.

    Thanks in advance.