Continue Jenkins pipeline past failed stage – Photoshop
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' //…