-
Bug
-
Resolution: Unresolved
-
Trivial
-
None
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 } ) } } } }