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()