Commit c9124e3d authored by illsilin's avatar illsilin
Browse files

try using sccache --start-server instead of wrapper

parent 41cf1699
...@@ -234,14 +234,7 @@ def cmake_build(Map conf=[:]){ ...@@ -234,14 +234,7 @@ 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 sccache --start-server
export SCCACHE_ENABLED=true
export SCCACHE_LOG_LEVEL=debug
export SCCACHE_IDLE_TIMEOUT=14400
export COMPILERS_HASH_DIR=/tmp/.sccache
export SCCACHE_BIN=/usr/local/.cargo/bin/sccache
export SCCACHE_EXTRAFILES=/tmp/.sccache/rocm_compilers_hash_file
../script/sccache_wrapper.sh;
fi fi
""" """
def setup_cmd = conf.get("setup_cmd", "${cmake_envs} cmake ${setup_args} .. ") def setup_cmd = conf.get("setup_cmd", "${cmake_envs} cmake ${setup_args} .. ")
......
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