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_ROCM
Commits
e7495e6b
Unverified
Commit
e7495e6b
authored
Jan 30, 2024
by
Illia Silin
Committed by
GitHub
Jan 30, 2024
Browse files
turn off performance tests in CI by default until the infrastructure is fixed (#1147)
parent
84832fc4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
Jenkinsfile
Jenkinsfile
+10
-2
No files found.
Jenkinsfile
View file @
e7495e6b
...
@@ -713,6 +713,10 @@ pipeline {
...
@@ -713,6 +713,10 @@ pipeline {
name:
"RUN_CPPCHECK"
,
name:
"RUN_CPPCHECK"
,
defaultValue:
false
,
defaultValue:
false
,
description:
"Run the cppcheck static analysis (default: OFF)"
)
description:
"Run the cppcheck static analysis (default: OFF)"
)
booleanParam
(
name:
"RUN_PERFORMANCE_TESTS"
,
defaultValue:
false
,
description:
"Run the performance tests (default: OFF)"
)
}
}
environment
{
environment
{
dbuser
=
"${dbuser}"
dbuser
=
"${dbuser}"
...
@@ -890,7 +894,7 @@ pipeline {
...
@@ -890,7 +894,7 @@ pipeline {
{
{
when
{
when
{
beforeAgent
true
beforeAgent
true
expression
{
!
params
.
RUN_FULL_QA
.
toBoolean
()
}
expression
{
!
params
.
RUN_FULL_QA
.
toBoolean
()
&&
params
.
RUN_PERFORMANCE_TESTS
.
toBoolean
()
}
}
}
options
{
retry
(
2
)
}
options
{
retry
(
2
)
}
agent
{
label
rocmnode
(
"gfx908 || gfx90a"
)}
agent
{
label
rocmnode
(
"gfx908 || gfx90a"
)}
...
@@ -906,7 +910,7 @@ pipeline {
...
@@ -906,7 +910,7 @@ pipeline {
{
{
when
{
when
{
beforeAgent
true
beforeAgent
true
expression
{
params
.
RUN_FULL_QA
.
toBoolean
()
}
expression
{
params
.
RUN_FULL_QA
.
toBoolean
()
&&
params
.
RUN_PERFORMANCE_TESTS
.
toBoolean
()
}
}
}
options
{
retry
(
2
)
}
options
{
retry
(
2
)
}
agent
{
label
rocmnode
(
"gfx90a"
)}
agent
{
label
rocmnode
(
"gfx90a"
)}
...
@@ -925,6 +929,10 @@ pipeline {
...
@@ -925,6 +929,10 @@ pipeline {
parallel
parallel
{
{
stage
(
"Process results"
){
stage
(
"Process results"
){
when
{
beforeAgent
true
expression
{
params
.
RUN_PERFORMANCE_TESTS
.
toBoolean
()
}
}
agent
{
label
'mici'
}
agent
{
label
'mici'
}
steps
{
steps
{
process_results
()
process_results
()
...
...
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