Reputation: 651
I have a MultiJob Project on Jenkins. I have job Main that runs jobs A, B, C. In MulitiJob Phase section, "Continuation condition to next phase when jobs' statuses are: Successful" is set. All of the jobs use common workspace. Is there a way to configure job C in such a way that it would be triggered only manually? So that if i start job Main, only jobs A and B would be run?
Upvotes: 1
Views: 135
Reputation: 371
Yes. the way to do so is to add Boolean parameter and set his default to false and check it every time you run the build manually.
This job will run only if the checkbox selected and that will be selected if it will run manually.
Upvotes: 1