jenkinsci / jenkinsci/workflow-basic-steps-plugin
[JENKINS-55861] Parallel stage labels displayed on top of each other
- Lingua principale
- Java
- Stelle
- 73
- Fork
- 129
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
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 anystages
{
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
}
)
}
}
}
}
---
Originally reported by drugcrazed, imported from: Parallel stage labels displayed on top of each other
Raw content of original issue
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 anystages
{
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
}
)
}
}
}
}
1 attachment
- [jenkins-parallel.png](https://issues.jenkins.io/secure/attachment/45837/jenkins-parallel.png)
> 
Guida per i contributori
Apri la guida per i contributori
Valutazione
Questa issue non è ancora stata valutata.