Nested parallels blocks break rendering

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

XMLWordPrintable

      Using the following pipeline definition, there is no stage rendering in BO. Only logs.

      stage('Start') {
       node {
          echo "Start"
       }
      }
      
      stage('Middle'){
          parallel(step1: {
              node {
                  echo "step 1"
              }
          }, step2: {
              node {
                  echo "step 2 start"
                  parallel (
                      phase1: { echo "Phase 1" },
                      phase2: { echo "Phase 2" }
                  )
                  echo "step 2 end"
              }
      
          })
      }
      
      stage('End') {
       node {
          echo "End"
       }
      }
      

            Assignee:
            Vivek Pandey
            Reporter:
            Vincent Latombe
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Resolved:
              Archived: