Simplified performance results stage

Removed parent stage as there are no other parallel stages to execute (yet).
This commit is contained in:
andrew clark
2025-10-06 12:53:09 -06:00
parent 725b2813d4
commit 3c75ff404c

36
Jenkinsfile vendored
View File

@@ -1594,15 +1594,6 @@ pipeline {
}
parallel
{
stage("Build Coordination") {
agent{ label rocmnode("nogpu") }
steps {
script {
echo "Coordinating Build CK and run Tests stage execution"
echo "CI execution status: ${env.SHOULD_RUN_CI}"
}
}
}
stage("Build CK with RHEL8")
{
when {
@@ -1824,29 +1815,12 @@ 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("Performance Test Coordination") {
agent{ label rocmnode("nogpu") }
steps {
script {
echo "Coordinating Process Performance Test Results stage execution"
echo "CI execution status: ${env.SHOULD_RUN_CI}"
}
}
}
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()
cleanWs()
}
}
agent { label 'mici' }
steps {
process_results()
cleanWs()
}
}
}