-
Type:
Bug
-
Resolution: Duplicate
-
Priority:
Major
-
Component/s: blueocean-plugin
-
None
Using the following pipeline definition
stage('Build') { node { sh "echo Building things" } } stage('Post Build') { parallel "integration tests": { node { sh 'echo integrations tests' } }, "consumer tests": { echo "consumer tests" parallel "consumer-subtest-1": { node { sh 'echo consumer-subtest-1' } }, "consumer-subtest-2": { node { input 'Abort?' sh 'echo consumer-subtest-2' } }, "consumer-subtest-3": { node { sh 'echo consumer-subtest-3' } }, failFast: false }, failFast: false }
Proceeding seems to work fine

But aborting doesn't display correctly the status of "consumer-subtest-1", "consumer-subtest-2" and "consumer-subtest-3"

 consumer-subtest-1 should be green and is red
 consumer-subtest-2 should be red and is green
 consumer-subtest-3 should be green and is red
- duplicates
-
JENKINS-39203 All stages show up as UNSTABLE when only one stage should
-
- Resolved
-
- links to