From b64cb8ec5b4eac710a16084c510fef0faf0501be Mon Sep 17 00:00:00 2001 From: andrew clark Date: Wed, 1 Oct 2025 11:43:49 -0600 Subject: [PATCH] Update Jenkinsfile Reverting performance reports when condition. --- Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index f9671ccf43..70e4f92bd8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1815,11 +1815,14 @@ 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("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()