From 76012af4dc6f25ec491ed24cf427ae026c30743d Mon Sep 17 00:00:00 2001 From: andrew clark Date: Mon, 6 Oct 2025 08:51:40 -0600 Subject: [PATCH] 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. --- Jenkinsfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 70e4f92bd8..63f4055c0f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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