Reputation: 41408
I have three jobs that I want to trigger in parallel. Once the last of these 3 are finished, I want a fourth job to IMMEDIATELY kick off, but only if the original three jobs were all successful. What is a good way to accomplish this in Jenkins?
Upvotes: 0
Views: 264
Reputation: 1248
Use Build Flow plugin
Use simple DSL Scripts to do the required jobs in jenkins.
Example:
parallel
(
{build("job1")}
{build("job2")}
{build("job3")}
)
build("job4")
here 3 jobs running in parallel phase. 4th job get excuted only after the completion of parallel jobs.
Upvotes: 1