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

Nested parallels blocks break rendering

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Major Major
    • blueocean-plugin
    • None

      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"
       }
      }
      

            vivek Vivek Pandey
            vlatombe Vincent Latombe
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: