How to skip a job in Jenkins if another job is in the failed state -
i have 2 jenkins jobs same project:
- a job continuous build run whenever there new commits
- a job nightly build, triggered time, same thing additional steps take long time (e.g. slow tests, sandcastle documentation generation, etcetera)
when continuous build failed @ end of day, don't want nightly build run; know fail. how configure in jenkins?
i have considered using conditional build steps: way skip build steps, build still run. don't want new passed or failed build appear in history; want skip nightly build altogether.
have tried build result trigger plugin - https://wiki.jenkins-ci.org/display/jenkins/buildresulttrigger+plugin use similar purpose
Comments
Post a Comment