Testing final clean up stage

This commit is contained in:
andrew clark
2025-10-06 14:25:24 -06:00
parent 3c75ff404c
commit da1298d3b5

11
Jenkinsfile vendored
View File

@@ -1823,5 +1823,16 @@ pipeline {
cleanWs()
}
}
stage("Clean Up Test Stage")
{
when {
beforeAgent true
expression { env.SHOULD_RUN_CI.toBoolean() }
}
agent{ label rocmnode("nogpu") }
steps {
cleanWs()
}
}
}
}