I'm using a parallel
block into my Jenkinsfile to execute concurrently some tests, but all the outputs are getting mixed up.
This is an extract of my Jenkinsfile, as an example:
// do some IT against different databases
stage name: 'IT'
parallel (
mysqlIT: {
node {
executeMysqlIT()
}
},
oracleIT: {
node {
executeOracleIT()
}
}
)
Please note that, as suggested here I'm running a new node
within each parallel
, so they get properly parallelized and each of them gets its own workspace.
What should I do to have Jenkins show me separated outputs for the parallel
blocks?