This Jenkins plugin allows managing jobs orchestration using a dedicated DSL, extracting the flow logic from jobs.
parallel (
{
guard {
build("job1A")
} rescue {
build("job1B")
}
},
{
retry 3, {
build("job2")
}
}
)
See the documentation and release notes at Build Flow Plugin on the Jenkins Wiki for more information.
Other informations:
- Bug Tracker for known issues and expectations : Jenkins Build Flow Component
- Discussions on this plugin are hosted on jenkins-user mailing list