From c563f34bd0c61ec7c4dc2cf7b9f3853f225a7d1e Mon Sep 17 00:00:00 2001 From: andrew clark Date: Tue, 30 Sep 2025 22:45:20 -0600 Subject: [PATCH] Fixing syntax error --- Jenkinsfile | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 36dedb6cc0..97612b0cf4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1817,11 +1817,14 @@ pipeline { 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() } } - stage("Process results"){ - agent { label 'mici' } - steps{ - process_results() - cleanWs() + parallel + { + stage("Process results"){ + agent { label 'mici' } + steps{ + process_results() + cleanWs() + } } } }