Continue Jenkins pipeline past failed stage
问题 I have a series of stages that perform quick checks. I want to perform them all, even if there are failures. For example: stage('one') { node { sh 'exit 0' } } stage('two') { node { sh 'exit 1' // failure } } stage('three') { node { sh 'exit 0' } } Stage two fails, so by default stage three is not executed. Ordinarily this would be a job for parallel , but I want to display them in the stage view. In the mock up below: Build #4 shows what normally happens. Job two fails so three does not run.