Testing parallel stages

Adding coordination stage to test if parent check status is  correctly updated.
This commit is contained in:
andrew clark
2025-10-06 08:55:17 -06:00
parent 76012af4dc
commit 725b2813d4

9
Jenkinsfile vendored
View File

@@ -1594,6 +1594,15 @@ pipeline {
}
parallel
{
stage("Build Coordination") {
agent{ label rocmnode("nogpu") }
steps {
script {
echo "Coordinating Build CK and run Tests stage execution"
echo "CI execution status: ${env.SHOULD_RUN_CI}"
}
}
}
stage("Build CK with RHEL8")
{
when {