Update Jenkinsfile

Reverting performance reports when condition.
This commit is contained in:
andrew clark
2025-10-01 11:43:49 -06:00
parent 099609a58f
commit b64cb8ec5b

5
Jenkinsfile vendored
View File

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