"src/vscode:/vscode.git/clone" did not exist on "43cd8529c240161ffbad165603d47c5d008559fc"
Commit 98b72294 authored by Artur Wojcik's avatar Artur Wojcik
Browse files

Jenkins

parent e0abe7bb
...@@ -12,7 +12,8 @@ def rocmtestnode(Map conf) { ...@@ -12,7 +12,8 @@ def rocmtestnode(Map conf) {
env.CCACHE_COMPRESSLEVEL = 7 env.CCACHE_COMPRESSLEVEL = 7
env.CCACHE_DIR = ccache env.CCACHE_DIR = ccache
def cmake_build = { bconf -> def cmake_build = { bconf ->
def compiler = bconf.get("compiler", "/opt/rocm/llvm/bin/clang++") def cxx_compiler = bconf.get("cxx_compiler", "/opt/rocm/llvm/bin/clang++")
def cc_compiler = bconf.get("cc_compiler", "/opt/rocm/llvm/bin/clang")
def flags = bconf.get("flags", "") def flags = bconf.get("flags", "")
def gpu_debug = bconf.get("gpu_debug", "0") def gpu_debug = bconf.get("gpu_debug", "0")
def cmd = """ def cmd = """
...@@ -20,7 +21,8 @@ def rocmtestnode(Map conf) { ...@@ -20,7 +21,8 @@ def rocmtestnode(Map conf) {
echo "leak:dnnl::impl::malloc" > suppressions.txt echo "leak:dnnl::impl::malloc" > suppressions.txt
export LSAN_OPTIONS="suppressions=\$(pwd)/suppressions.txt" export LSAN_OPTIONS="suppressions=\$(pwd)/suppressions.txt"
export MIGRAPHX_GPU_DEBUG=${gpu_debug} export MIGRAPHX_GPU_DEBUG=${gpu_debug}
export CXX=${compiler} export CXX=${cxx_compiler}
export CC=${cc_compiler}
export CXXFLAGS='-Werror' export CXXFLAGS='-Werror'
env env
rm -rf build rm -rf build
......
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