Testing skipped parallel stages

Testing the addition of a coordination stage to always pass and give an update to skipped parent stages with parallel sub-stages.
This commit is contained in:
andrew clark
2025-10-06 08:51:40 -06:00
parent 826357b45e
commit 76012af4dc

9
Jenkinsfile vendored
View File

@@ -1818,6 +1818,15 @@ pipeline {
}
parallel
{
stage("Performance Test Coordination") {
agent{ label rocmnode("nogpu") }
steps {
script {
echo "Coordinating Process Performance Test Results stage execution"
echo "CI execution status: ${env.SHOULD_RUN_CI}"
}
}
}
stage("Process results"){
when {
beforeAgent true