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

try using toBoolean for the QA conditions

parent d3287a09
...@@ -447,7 +447,7 @@ pipeline { ...@@ -447,7 +447,7 @@ pipeline {
stage("Run ckProfiler: gfx908") stage("Run ckProfiler: gfx908")
{ {
when { when {
expression { params.RUN_FULL_QA != "true" } expression { !params.RUN_FULL_QA.toBoolean() }
} }
agent{ label rocmnode("gfx908")} agent{ label rocmnode("gfx908")}
environment{ environment{
...@@ -475,7 +475,7 @@ pipeline { ...@@ -475,7 +475,7 @@ pipeline {
{ {
stage("Process results for gfx908"){ stage("Process results for gfx908"){
when { when {
expression { params.RUN_FULL_QA != "true" } expression { !params.RUN_FULL_QA.toBoolean() }
} }
agent { label 'mici' } agent { label 'mici' }
steps{ 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