"test/quantization.cpp" did not exist on "aaf8ed08cb550e2ca5f29ba329e1774d3496e7bc"
Commit 0de83695 authored by Paul's avatar Paul
Browse files

Use rocmtest

parent 978e5ae3
...@@ -66,7 +66,7 @@ def rocmnode(body) { ...@@ -66,7 +66,7 @@ def rocmnode(body) {
} }
// Static checks // Static checks
rocmtest tidy: rocmnode('rocm') { cmake_build -> rocmtest tidy: rocmnode('rocmtest') { cmake_build ->
stage('Clang Tidy') { stage('Clang Tidy') {
sh ''' sh '''
rm -rf build rm -rf build
...@@ -76,7 +76,7 @@ rocmtest tidy: rocmnode('rocm') { cmake_build -> ...@@ -76,7 +76,7 @@ rocmtest tidy: rocmnode('rocm') { cmake_build ->
make -j8 -k analyze make -j8 -k analyze
''' '''
} }
}, format: rocmnode('rocm') { cmake_build -> }, format: rocmnode('rocmtest') { cmake_build ->
stage('Clang Format') { stage('Clang Format') {
sh ''' sh '''
find . -iname \'*.h\' \ find . -iname \'*.h\' \
...@@ -90,14 +90,14 @@ rocmtest tidy: rocmnode('rocm') { cmake_build -> ...@@ -90,14 +90,14 @@ rocmtest tidy: rocmnode('rocm') { cmake_build ->
| xargs -n 1 -P 1 -I{} -t sh -c \'clang-format-5.0 -style=file {} | diff - {}\' | xargs -n 1 -P 1 -I{} -t sh -c \'clang-format-5.0 -style=file {} | diff - {}\'
''' '''
} }
}, clang: rocmnode('rocm') { cmake_build -> }, clang: rocmnode('rocmtest') { cmake_build ->
stage('Clang Debug') { stage('Clang Debug') {
cmake_build('clang++-5.0', '-DCMAKE_BUILD_TYPE=debug') cmake_build('clang++-5.0', '-DCMAKE_BUILD_TYPE=debug')
} }
stage('Clang Release') { stage('Clang Release') {
cmake_build('clang++-5.0', '-DCMAKE_BUILD_TYPE=release') cmake_build('clang++-5.0', '-DCMAKE_BUILD_TYPE=release')
} }
}, gcc: rocmnode('rocm') { cmake_build -> }, gcc: rocmnode('rocmtest') { cmake_build ->
stage('GCC Debug') { stage('GCC Debug') {
cmake_build('g++-5', '-DCMAKE_BUILD_TYPE=debug') cmake_build('g++-5', '-DCMAKE_BUILD_TYPE=debug')
} }
......
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