Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
composable_kernel
Commits
5e5df9cf
Commit
5e5df9cf
authored
Jul 26, 2022
by
illsilin
Browse files
try using toBoolean for the QA conditions
parent
d3287a09
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Jenkinsfile
Jenkinsfile
+2
-2
No files found.
Jenkinsfile
View file @
5e5df9cf
...
...
@@ -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
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment