REGRESSION: parallel karaoke not allowing branch selection or completing correctly

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

XMLWordPrintable

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

            Assignee:
            Thorsten Scherler
            Reporter:
            Michael Neale
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Resolved:
              Archived: