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

When developer opens/closes a step it should stop karaoke

XMLWordPrintable

    • Blue Ocean 1.1, Blue Ocean 1.1, Blue Ocean 1.2-beta1, Blue Ocean 1.4 - beta 1, Blue Ocean 1.4 - beta 3, Blue Ocean 1.4 - beta 2, Blue Ocean 1.6 - beta 2, Blue Ocean - 1.6 - beta 4

      Steps to reproduce

      1. I am viewing the running Pipeline defined in the example below
      2. The first step of stage 1 has finished successfully and the second step of step 1 is running
      3. I open the first step, to examine the log. While I am examining the log, step 2 completes and execution moves on to the step in stage 2.
      4. My focus is ripped away from Step 1 of Stage 1 to Step 1 of Stage 2.

      What should happen
      When I open step 1 of stage 1, karaoke should not move my focus to Step 1 of Stage 2.

      Example

      pipeline {
          agent any
          stages {
              stage('1') {
                  steps {
                      sh 'ping -c 5 localhost'
                      sh 'ping -c 5 localhost'
                  }
              }
              stage('2') {
                  steps {
                      sh 'ping -c 50 localhost'
                  }
              }
          }
      }
      

            sophistifunk Josh McDonald
            jamesdumay James Dumay
            Votes:
            4 Vote for this issue
            Watchers:
            6 Start watching this issue

              Created:
              Updated: