Commit e54db8de authored by Artur Wojcik's avatar Artur Wojcik
Browse files

Jenkins

parent 9f9c54c4
......@@ -16,7 +16,8 @@ def rocmtestnode(Map conf) {
env.CCACHE_COMPRESSLEVEL = 7
env.CCACHE_DIR = ccache
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 gpu_debug = bconf.get("gpu_debug", "0")
def cmd = """
......@@ -24,7 +25,8 @@ def rocmtestnode(Map conf) {
echo "leak:dnnl::impl::malloc" > suppressions.txt
export LSAN_OPTIONS="suppressions=\$(pwd)/suppressions.txt"
export MIGRAPHX_GPU_DEBUG=${gpu_debug}
export CXX=${compiler}
export CXX=${cxx_compiler}
export CC=${cc_compiler}
export CXXFLAGS='-Werror'
env
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