From 725b2813d431a0ded0d921a5ee34efde77025d60 Mon Sep 17 00:00:00 2001 From: andrew clark Date: Mon, 6 Oct 2025 08:55:17 -0600 Subject: [PATCH] Testing parallel stages Adding coordination stage to test if parent check status is correctly updated. --- Jenkinsfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 63f4055c0f..35e402b5cf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 {