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

REGRESSION: parallel karaoke not allowing branch selection or completing correctly

XMLWordPrintable

    • 1.0-beta-1, 1.0-b05/b-06

      When running a pipeline that has parallel branches:

      • Selecting the non "top" branch doesn't show its steps
      • If a branch finishes early it doesn't show up as finished (likely related to above).

      A video of this in action:

      http://www.giphy.com/gifs/3oz8xx6ntQKUdBXf7W

      To reproduce, use the following in an simple non multibranch pipeline, run it from blue ocean and follow along:

      node {
          stage "hey"
          sh "echo yeah"
          sleep 3
          
          stage "par"
          
          parallel (
              "left" : {
                  sh "sleep 10s"
                  sh "echo yeah"
              }, 
              
              "right" : {
                  sh "echo wozzle"
              }
              
              )
          
          stage "ho"
          sh "echo done"
      }
      

            tscherler Thorsten Scherler
            michaelneale Michael Neale
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated:
              Resolved: