From a10bc42b3305aa0f375af9ccbd8320ec88a26aed Mon Sep 17 00:00:00 2001 From: Benoit Pierre Date: Tue, 26 Nov 2024 16:41:08 +0100 Subject: [PATCH] ci/circle: fix ccache cache (#1993) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit New ccache versions respect the XDG spec: `~/.ccache` → `~/.cache/ccache`. --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 03ed64869..5f8dc1d5c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,7 @@ parameters: # Bump this to reset all caches. cache_epoch: type: integer - default: 2 + default: 3 # }}} @@ -193,7 +193,7 @@ jobs: name: Save build cache key: *CACHE_KEY_BUILD_CACHE paths: - - /home/ko/.ccache + - /home/ko/.cache/ccache - save_cache: name: Save build directory key: *CACHE_KEY_BUILD_DIR