In the classical GUI all stages are shown as unstable when only one stage is (in BlueOcean it is displayed correct)
My expectation: Only the unstable stage is displayed as unstable, others are not (while the complete build still is marked as unstable)
#!groovy pipeline { agent any stages { stage('successful') { steps { echo ('hello') } } stage('unstable') { steps { unstable(message: "Failed: ${STAGE_NAME} => return UNSTABLE status") } } } }
Dupe of JenkinsJENKINS-58783 ? Which was created as a result of: https://issues.jenkins-ci.org/browse/JENKINS-39203?focusedCommentId=372584#comment-372584
Yes, probably a dupe of the one mentioned. Closing this one.