Correcting env var assignment

This commit is contained in:
andrew clark
2025-10-07 14:48:09 -06:00
parent 96e75bc612
commit 0ca48d5ca5

4
Jenkinsfile vendored
View File

@@ -1160,14 +1160,14 @@ pipeline {
ck_git_creds = "${ck_git_creds}"
gerrit_cred="${gerrit_cred}"
DOCKER_BUILDKIT = "1"
SHOULD_RUN_CI = "false"
SHOULD_RUN_CI = "true"
}
stages{
stage("Determine CI Execution") {
agent{ label rocmnode("nogpu") }
steps {
script {
env.SHOULD_RUN_CI = params.FORCE_CI.toBoolean() || shouldRunCICheck()
env.SHOULD_RUN_CI = String.valueOf(params.FORCE_CI.toBoolean() || shouldRunCICheck())
echo "SHOULD_RUN_CI: ${env.SHOULD_RUN_CI}"
}
}