Fixing syntax error

This commit is contained in:
andrew clark
2025-09-30 22:45:20 -06:00
parent 41a21d0a93
commit c563f34bd0

13
Jenkinsfile vendored
View File

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