Wrong graph when parallel stages block contains only one stage

This issue is archived. You can view it, but you can't modify it. Learn more

XMLWordPrintable

      When pipeline contains parallel stages block, but inside them there is only one stage, then stages after that block are not displayed. 

      Example pipeline:

      pipeline {
          agent {
              label "master"
          }
          stages {
              stage('Build') {
                  parallel {
                      stage('build') {
                          stages {
                              stage('x86') {
                                  steps {
                                      echo "test"
                                  }
                              }
                          }
                      }
                  }
              }
              stage('Static Analysis') {
                  steps {
                      echo "test"
      
                  }
              }
          }
      }
       

      After run there is no Static Analysis stage visible in blue ocean.

      Result:

       

      When in parallel will not be stages block - everything works fine 

            Assignee:
            Unassigned
            Reporter:
            Lukasz Job
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Archived: