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
3138de16
Commit
3138de16
authored
Sep 06, 2022
by
Anthony Chang
Browse files
[test] simpler pipeline
parent
7e4851a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
Jenkinsfile
Jenkinsfile
+6
-2
No files found.
Jenkinsfile
View file @
3138de16
...
...
@@ -529,6 +529,7 @@ pipeline {
}
}
}
/*
stage("Static checks") {
when {
beforeAgent true
...
...
@@ -565,6 +566,7 @@ pipeline {
}
}
}
*/
stage
(
"Tests"
)
{
when
{
...
...
@@ -580,7 +582,7 @@ pipeline {
setup_args
=
""" -D CMAKE_CXX_FLAGS=" --offload-arch=gfx908 -O3 " -DBUILD_DEV=On """
}
steps
{
buildHipClangJobAndReboot
(
setup_args:
setup_args
,
config_targets:
"
check
"
,
no_reboot:
true
,
build_type:
'Release'
,
gpu_arch:
"gfx908"
)
buildHipClangJobAndReboot
(
setup_args:
setup_args
,
config_targets:
"
examples
"
,
no_reboot:
true
,
build_type:
'Release'
,
gpu_arch:
"gfx908"
)
}
}
stage
(
"Run Tests: gfx90a"
)
...
...
@@ -595,11 +597,12 @@ pipeline {
setup_args
=
""" -D CMAKE_CXX_FLAGS="--offload-arch=gfx90a -O3 " -DBUILD_DEV=On """
}
steps
{
buildHipClangJobAndReboot
(
setup_args:
setup_args
,
config_targets:
"
check
"
,
no_reboot:
true
,
build_type:
'Release'
,
gpu_arch:
"gfx90a"
)
buildHipClangJobAndReboot
(
setup_args:
setup_args
,
config_targets:
"
examples
"
,
no_reboot:
true
,
build_type:
'Release'
,
gpu_arch:
"gfx90a"
)
}
}
}
}
/*
stage("Client App")
{
when {
...
...
@@ -683,6 +686,7 @@ pipeline {
}
}
}
*/
/* enable after the cmake file supports packaging
stage("Packages") {
...
...
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