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

Impossible to view steps that are outside stages/parallels

XMLWordPrintable

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

      Given the following pipeline

      node {
          //out of the stage
          sh ('sleep 10')
        stage('S1') {  
          // prepare the parallel jobs
          sh ('sleep 20')
          
          // run them
          parallel 'S1.1.1': { sh('sleep 10') }, 'S1.1.2': { sh('sleep 10') }
          
          // another one
          sh ('sleep 10')
        }
      
          // cleanup
          sh ('sleep 10')
      }
      

      All the steps outstage stage // parallels do not show up in blue ocean.

      This very annoying. You sometimes want to do some prep in a stage before running parallels.

        1. view-out-of-stage.png
          23 kB
          Julien Pivotto
        2. view-out-of-stage2.png
          22 kB
          Julien Pivotto

            Unassigned Unassigned
            roidelapluie Julien Pivotto
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: