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

Parallel stage labels displayed on top of each other

XMLWordPrintable

      I noticed today that some of our build logs have written the stage label on top of each other when there was a parallel build step used. It doesn't look like it happens all the time, but does seem to happen when both stages write out at the same time.

      The Jenkinsfile is essentially

      pipeline
      {
          agent any
      
          stages
          {
              stage ('Parallel')
              {
                  steps
                  {
                      parallel(
                          first:  
                          {
                              sh "run_first_test_that_outputs" // In our case PHPUnit                                               
                          }
                          second:
                          {
                              sh "run_second_test_that_outputs" // In our case, session based tests                                 
                          }
                      )
                  }
              }
          }
      }
      

            Unassigned Unassigned
            drugcrazed Patrick Rose
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: