diff options
author | nkozlovskiy <nmk@ydb.tech> | 2023-09-07 13:17:17 +0300 |
---|---|---|
committer | nkozlovskiy <nmk@ydb.tech> | 2023-09-07 15:03:31 +0300 |
commit | 37954973d17934e5117531fef99d56e7b40327c0 (patch) | |
tree | 5679a1a2acd5694578b8bc7e48804a910aac1874 | |
parent | e7ea57ac1cbd489f2a57c028d64f09344b07705b (diff) | |
download | ydb-37954973d17934e5117531fef99d56e7b40327c0.tar.gz |
use CCACHE_PATH for docker builds
-rw-r--r-- | .github/docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/docker/Dockerfile b/.github/docker/Dockerfile index 69e8f05530..5651e27dd6 100644 --- a/.github/docker/Dockerfile +++ b/.github/docker/Dockerfile @@ -35,7 +35,7 @@ RUN --mount=type=secret,id=ccache_remote_storage \ && export CCACHE_SLOPPINESS=locale \ && export CCACHE_REMOTE_STORAGE="$(cat /run/secrets/ccache_remote_storage)" \ && cmake -G Ninja -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_C_COMPILER_LAUNCHER=/usr/local/bin/ccache -DCMAKE_CXX_COMPILER_LAUNCHER=/usr/local/bin/ccache \ + -DCCACHE_PATH=/usr/local/bin/ccache \ -DCMAKE_TOOLCHAIN_FILE=../ydb/clang.toolchain \ ../ydb \ && ninja ydb/apps/ydbd/ydbd ydb/apps/ydb/all \ |