Reputation: 66713
I have two Jenkins jobs for the same project:
When the continuous build is failed at the end of the day, then I don't want the nightly build to run; I already know that it will fail. How do I configure this in Jenkins?
I have already considered using conditional build steps: this way I could skip build steps, but the build would still run. I don't want a new passed or failed build to appear in the history; I just want to skip the nightly build altogether.
Upvotes: 3
Views: 1546
Reputation: 361
Have you tried build result trigger plugin - https://wiki.jenkins-ci.org/display/JENKINS/BuildResultTrigger+Plugin we use it for similar purpose
Upvotes: 3