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

Skipped stage before end node is wonky

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Blocker Blocker
    • blueocean-plugin
    • None
    • Blue Ocean 1.2

      Problem
      Skipped stage before end node is wonky.

      Notes
      I assume this is because we went with the shorter start/end node lengths? If the quick fix is to go back to the start/end nodes being the same distance as regular nodes I am ok with that.

      Example Jenkisfile

      pipeline {
        agent { any }
        }
        stages {
          stage('Build') {
            steps {
              echo 'hello world'
            }
          }
          stage('Browser Tests') {
            steps {
              echo 'hello world'
            }
          }
          stage('Static Analysis') {
          steps {
            echo 'hello world'
          }
          }
          stage('Deploy') {
            when { branch 'master' }
            steps {
              echo 'hello world'
            }
          }
        }
      }
      

            sophistifunk Josh McDonald
            jamesdumay James Dumay
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: