Lost full pipeline state on first run

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

XMLWordPrintable

      Problem
      Declarative Pipeline should be fully displaying on first run because the model can be read ahead of time.

      This appears to be broken. See this video.

      Example Jenkinsfile

      pipeline {
        agent any
        stages {
          stage('Build') {
            steps {
              echo 's'
            }
          }
          stage('Test') {
            steps {
              parallel(
                "JUnit": {
                  echo 'sdad'
                  
                },
                "DBUnit": {
                  echo 'dis'
                  
                },
                "Jasimine": {
                  echo 'dis'
                  
                }
              )
            }
          }
          stage('Browser Tests') {
            steps {
              parallel(
                "Firefox": {
                  echo 'sdad'
                },
                "Edge": {
                  sh 'ping -c 5 google.com'
                },
                "Safari": {
                  sh 'ping -c 5 google.com'
                },
                "Chrome": {
                  sh 'ping -c 5 google.com'
                }
              )
            }
          }
          stage('Deploy to Staging') {
            when { branch 'staging' }
            steps {
              echo 's'
            }
          }
          stage ('Security check') {
            steps {
              echo 's'
            }
          }
          stage('Deploy to Production') {
            when { branch 'staging' }
            steps {
              echo 's'
            }
          }
        }
      }
      

            Assignee:
            Unassigned
            Reporter:
            James Dumay
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Archived: