diff options
author | Nikita Kozlovskiy <nikitka@gmail.com> | 2023-07-06 17:50:04 +0000 |
---|---|---|
committer | nkozlovskiy <nmk@ydb.tech> | 2023-07-06 20:50:04 +0300 |
commit | 1b6c51c2d887995831115e83dcdb4354333f5390 (patch) | |
tree | d3720fa9bf772dbe62e2fcd710053f04c076c610 | |
parent | 506c1df4b3809f0fc156136db88a47db9901028e (diff) | |
download | ydb-1b6c51c2d887995831115e83dcdb4354333f5390.tar.gz |
doc: use cachesrv.ydb.tech instead of IP for ccache remote storage
doc: use cachesrv.ydb.tech instead of IP for ccache remote storage
Pull Request resolved: #298
-rw-r--r-- | BUILD.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -108,7 +108,7 @@ With enabled Ccache, you can finish the compilation of all targets on supported 2. Configure `Ccache` to use remote storage using environment variables ```bash - export CCACHE_REMOTE_STORAGE="http://158.160.20.102:8080|read-only|layout=bazel" + export CCACHE_REMOTE_STORAGE="http://cachesrv.ydb.tech:8080|read-only|layout=bazel" export CCACHE_SLOPPINESS=locale export CCACHE_BASEDIR=~/ydbwork/ @@ -117,7 +117,7 @@ With enabled Ccache, you can finish the compilation of all targets on supported <summary>or using Ccache config file</summary> ```bash - ccache -o remote_storage="http://158.160.20.102:8080|read-only|layout=bazel" + ccache -o remote_storage="http://cachesrv.ydb.tech:8080|read-only|layout=bazel" ccache -o sloppiness=locale ccache -o base_dir=~/ydbwork/ |