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

Pipeline job hung after restart

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: Minor Minor
    • pipeline
    • None
    • 2.273

      I can reproduce it fairly consistently with, make sure that some stages are running and then restart:

      pipeline {
          agent none
          stages {
              stage('BuildAndTest') {
                  matrix {
                      agent any
                      axes {
                          axis {
                              name 'PLATFORM'
                              values 'linux', 'windows', 'mac'
                          }
                          axis {
                              name 'BROWSER'
                              values 'firefox', 'chrome', 'safari', 'edge'
                          }
                      }
                      stages {
                          stage('Build') {
                              steps {
                                  echo "Do Build for ${PLATFORM} - ${BROWSER}"
                              }
                          }
                          stage('Test') {
                              steps {
                                  echo "Do Test for ${PLATFORM} - ${BROWSER}"
                              }
                          }
                      }
                  }
              }
          }
      }
      

      Thread dump in https://gist.github.com/timja/6faee5e4876a8c7f5235563dc865c76e if it helps

            Unassigned Unassigned
            timja Tim Jacomb
            Votes:
            1 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated: