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

Blue Ocean display of sequential stages in parallel stages is flaky

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: Major Major
    • blueocean-plugin
    • None
    • BlueOcean 1.10.1

      When there are sequential stages in a parallel stage then the display of them is often not correct and very inconsistent - i.e. sometimes the display changes even from one build to the next.
      This seems to apply only to running builds. As soon as the build is completed the stages are displayed correctly.

      Note: this seems to be related to JENKINS-55320, but that one is about BlueOcean 1.9 and scripted stages. This one is about declarative stages and BlueOcean 1.10.1

       

      This is the relevant part of my Jenkinsfile:

      stage("Run Tests") {
      
          parallel {
              stage("Acceptance Tests") {
      
                  steps {
                      ...
                  }
              }
      
              stage("Integration Tests") {
      
                  steps {
                      ....
                  }
              }
      
              stage("IWG | DBG") {
                  stages {
                      stage("IWG Tests") {
                          steps {
                              ...
                          }
                      }
      
                      stage("DBG Tests") {
                          steps {
                              ...
                          }
      
                      }
                  }
              }
      
              stage("Payment Acceptance Tests") {
                  steps {
                      ...
                  }
              }
          }
      }

            Unassigned Unassigned
            kutzi kutzi
            Votes:
            3 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated: