Commit 5e5df9cf authored by illsilin's avatar illsilin
Browse files

try using toBoolean for the QA conditions

parent d3287a09
......@@ -447,7 +447,7 @@ pipeline {
stage("Run ckProfiler: gfx908")
{
when {
expression { params.RUN_FULL_QA != "true" }
expression { !params.RUN_FULL_QA.toBoolean() }
}
agent{ label rocmnode("gfx908")}
environment{
......@@ -475,7 +475,7 @@ pipeline {
{
stage("Process results for gfx908"){
when {
expression { params.RUN_FULL_QA != "true" }
expression { !params.RUN_FULL_QA.toBoolean() }
}
agent { label 'mici' }
steps{
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment