From 3c75ff404cc7b8af9625437ecef4a6b525162753 Mon Sep 17 00:00:00 2001 From: andrew clark Date: Mon, 6 Oct 2025 12:53:09 -0600 Subject: [PATCH] Simplified performance results stage Removed parent stage as there are no other parallel stages to execute (yet). --- Jenkinsfile | 36 +++++------------------------------- 1 file changed, 5 insertions(+), 31 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 35e402b5cf..59d4346c5f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1594,15 +1594,6 @@ 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 { @@ -1824,29 +1815,12 @@ pipeline { when { beforeAgent true expression { env.SHOULD_RUN_CI.toBoolean() } + expression { (params.RUN_PERFORMANCE_TESTS.toBoolean() || params.BUILD_INSTANCES_ONLY.toBoolean() || params.RUN_CK_TILE_FMHA_TESTS.toBoolean()) && !params.BUILD_LEGACY_OS.toBoolean() } } - 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 - expression { (params.RUN_PERFORMANCE_TESTS.toBoolean() || params.BUILD_INSTANCES_ONLY.toBoolean() || params.RUN_CK_TILE_FMHA_TESTS.toBoolean()) && !params.BUILD_LEGACY_OS.toBoolean() } - } - agent { label 'mici' } - steps{ - process_results() - cleanWs() - } - } + agent { label 'mici' } + steps { + process_results() + cleanWs() } } }