ci: Use documented CCACHE_MAXSIZE instead of CCACHE_SIZE

This change aims to:
1) Remove our own `CCACHE_SIZE` environment variable that violates
Ccache's `CCACHE_*` namespace.
2) Introduce the `CCACHE_MAXSIZE` environment variable that is
documented since v3.3, which makes its usage consistent with other ones,
such as `CCACHE_DIR` and `CCACHE_NOHASHDIR`.
This commit is contained in:
Hennadii Stepanov
2023-07-30 21:36:56 +01:00
parent 64440bb733
commit 79ceb161db
9 changed files with 10 additions and 10 deletions

View File

@@ -16,4 +16,4 @@ export RUN_FUZZ_TESTS=true
export GOAL="install"
export BITCOIN_CONFIG="--enable-fuzz --with-sanitizers=fuzzer,address,undefined,float-divide-by-zero,integer \
CC='clang-16 -ftrivial-auto-var-init=pattern' CXX='clang++-16 -ftrivial-auto-var-init=pattern'"
export CCACHE_SIZE=200M
export CCACHE_MAXSIZE=200M