aboutsummaryrefslogtreecommitdiff
path: root/ci/test/00_setup_env_native_fuzz_with_valgrind.sh
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2023-07-30 21:36:56 +0100
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2023-07-30 21:36:56 +0100
commit79ceb161dbf7e033ce557d98e297bc3333665f26 (patch)
tree9cbe69e391f39c8cbdfebd9a53516f33a450d34f /ci/test/00_setup_env_native_fuzz_with_valgrind.sh
parent64440bb733896a7a2caf902825e0406cb993e666 (diff)
downloadbitcoin-79ceb161dbf7e033ce557d98e297bc3333665f26.tar.xz
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`.
Diffstat (limited to 'ci/test/00_setup_env_native_fuzz_with_valgrind.sh')
-rwxr-xr-xci/test/00_setup_env_native_fuzz_with_valgrind.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/00_setup_env_native_fuzz_with_valgrind.sh b/ci/test/00_setup_env_native_fuzz_with_valgrind.sh
index abc3854762..30f512c38a 100755
--- a/ci/test/00_setup_env_native_fuzz_with_valgrind.sh
+++ b/ci/test/00_setup_env_native_fuzz_with_valgrind.sh
@@ -17,4 +17,4 @@ export FUZZ_TESTS_CONFIG="--valgrind"
export GOAL="install"
# Temporarily pin dwarf 4, until using Valgrind 3.20 or later
export BITCOIN_CONFIG="--enable-fuzz --with-sanitizers=fuzzer CC='clang -gdwarf-4' CXX='clang++ -gdwarf-4'"
-export CCACHE_SIZE=200M
+export CCACHE_MAXSIZE=200M