Commit 05b0b90c authored by illsilin's avatar illsilin
Browse files

set the paths before calling the sccache_wrapper

parent 6ecef55f
...@@ -234,6 +234,13 @@ def cmake_build(Map conf=[:]){ ...@@ -234,6 +234,13 @@ def cmake_build(Map conf=[:]){
mkdir install mkdir install
cd build cd build
if [ "${env.CK_CCACHE}" ]; then \ if [ "${env.CK_CCACHE}" ]; then \
export ROCM_PATH=/opt/rocm
export SCCACHE_ENABLED=true
export SCCACHE_LOG_LEVEL=debug
export SCCACHE_IDLE_TIMEOUT=14400
export COMPILERS_HASH_DIR=/usr/local/.sccache
export SCCACHE_BIN=/usr/local/.cargo/bin/sccache
export SCCACHE_EXTRAFILES=/usr/local/.sccache/rocm_compilers_hash_file
../script/sccache_wrapper.sh; ../script/sccache_wrapper.sh;
fi fi
""" """
......
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