Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-48884

Conditional parallel stages are not rendered properly if skipped by failed previous stage

    XMLWordPrintable

Details

    • Bug
    • Status: Closed (View Workflow)
    • Critical
    • Resolution: Fixed
    • blueocean-plugin
    • None
    • Jenkins 2.89
      Blue Ocean 1.35
      Pipeline Graph Analysis Plugin 1.6
    • Blue Ocean 1.5 - beta 3

    Description

      Related to JENKINS-47219

      Problem

      When running a pipeline with parallel stages, the state of those stages is incorrectly displayed when a previous one has failed.

      JenkinsFile

      pipeline {
       agent any
       stages {
        stage('Run Tests') {
         steps {
          bat 'exit 1'
         }
        }
        stage('Deploy') {
         parallel {
          stage('Dev') {
           when {
            branch 'master'
           }
           steps {
            echo 'hello master'
           }
          }
          stage('QA') {
           steps {
            echo 'hello stable'
           }
          }
         }
        }
       }
      }
      
      

       

      Log output:

       

      First time build. Skipping changelog.
      [Pipeline] }
      [Pipeline] // stage
      [Pipeline] withEnv
      [Pipeline] {
      [Pipeline] stage
      [Pipeline] { (Run Tests)
      [Pipeline] bat
      [parallel-stage-complete-bug-JNC4NY4S375GSWLOMCSNQAMH4OIZKQT7UCEAS4OYPXLQVHI6A3XA] Running batch script
      
      C:\...>exit 1 
      [Pipeline] }
      [Pipeline] // stage
      [Pipeline] stage
      [Pipeline] { (Deploy)
      Stage 'Deploy' skipped due to earlier failure(s)
      [Pipeline] parallel
      [Pipeline] [Dev] { (Branch: Dev)
      [Pipeline] [QA] { (Branch: QA)
      [Pipeline] [Dev] stage
      [Pipeline] [Dev] { (Dev)
      [Pipeline] [QA] stage
      [Pipeline] [QA] { (QA)
      Stage 'Dev' skipped due to earlier failure(s)
      Stage 'QA' skipped due to earlier failure(s)
      [Pipeline] [Dev] }
      [Pipeline] [QA] }
      [Pipeline] [Dev] // stage
      [Pipeline] [QA] // stage
      [Pipeline] [Dev] }
      [Pipeline] [QA] }
      [Pipeline] // parallel
      [Pipeline] }
      [Pipeline] // stage
      [Pipeline] }
      [Pipeline] // withEnv
      [Pipeline] }
      [Pipeline] // node
      [Pipeline] End of Pipeline
      ERROR: script returned exit code 1
      Finished: FAILURE
      

      This gives the following output:

      Result when the pipe is successful:

      (Changing the exit 1 to exit 0)

      FYI: cliffmeyers

      Attachments

        Issue Links

          Activity

            michaelneale Michael Neale added a comment -

            hey vivek a few people have picked this one up of late - might be worth looking into - should have been fixed as part of https://issues.jenkins-ci.org/browse/JENKINS-47219 but looks like a regression

            michaelneale Michael Neale added a comment - hey vivek a few people have picked this one up of late - might be worth looking into - should have been fixed as part of https://issues.jenkins-ci.org/browse/JENKINS-47219  but looks like a regression

            Hey!

            Yep, skipped steps are green, if they're in a parallel block. They're grey if standalone (not parallel)

            Very keen for this regression to be fixed. Happy to do some localhost testing for you, for when you have a PR.

            Thanks!

            dragoonis Paul Dragoonis added a comment - Hey! Yep, skipped steps are green, if they're in a parallel block. They're grey if standalone (not parallel) Very keen for this regression to be fixed. Happy to do some localhost testing for you, for when you have a PR. Thanks!
            nicu Nicolae Pascu added a comment -

            Hey dragoonis, I opened a PR with a fix for this here if you want to test it out https://github.com/jenkinsci/blueocean-plugin/pull/1702

            Thanks vivek for the help

            nicu Nicolae Pascu added a comment - Hey  dragoonis , I opened a PR with a fix for this here if you want to test it out https://github.com/jenkinsci/blueocean-plugin/pull/1702 Thanks vivek for the help

            People

              nicu Nicolae Pascu
              thdepauw Thomas De Pauw
              Votes:
              5 Vote for this issue
              Watchers:
              7 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: