"...models/git@developer.sourcefind.cn:OpenDAS/vision.git" did not exist on "8b4de1cbce885cb65f96e76b52d12164723d7bd1"
Commit 3138de16 authored by Anthony Chang's avatar Anthony Chang
Browse files

[test] simpler pipeline

parent 7e4851a6
...@@ -529,6 +529,7 @@ pipeline { ...@@ -529,6 +529,7 @@ pipeline {
} }
} }
} }
/*
stage("Static checks") { stage("Static checks") {
when { when {
beforeAgent true beforeAgent true
...@@ -565,6 +566,7 @@ pipeline { ...@@ -565,6 +566,7 @@ pipeline {
} }
} }
} }
*/
stage("Tests") stage("Tests")
{ {
when { when {
...@@ -580,7 +582,7 @@ pipeline { ...@@ -580,7 +582,7 @@ pipeline {
setup_args = """ -D CMAKE_CXX_FLAGS=" --offload-arch=gfx908 -O3 " -DBUILD_DEV=On """ setup_args = """ -D CMAKE_CXX_FLAGS=" --offload-arch=gfx908 -O3 " -DBUILD_DEV=On """
} }
steps{ 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") stage("Run Tests: gfx90a")
...@@ -595,11 +597,12 @@ pipeline { ...@@ -595,11 +597,12 @@ pipeline {
setup_args = """ -D CMAKE_CXX_FLAGS="--offload-arch=gfx90a -O3 " -DBUILD_DEV=On """ setup_args = """ -D CMAKE_CXX_FLAGS="--offload-arch=gfx90a -O3 " -DBUILD_DEV=On """
} }
steps{ 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") stage("Client App")
{ {
when { when {
...@@ -683,6 +686,7 @@ pipeline { ...@@ -683,6 +686,7 @@ pipeline {
} }
} }
} }
*/
/* enable after the cmake file supports packaging /* enable after the cmake file supports packaging
stage("Packages") { stage("Packages") {
......
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