From 8dad62aa1bd368ecd8ac3e0adf8710e529797af5 Mon Sep 17 00:00:00 2001 From: Benoit Pierre Date: Sat, 20 Jul 2024 06:01:05 +0000 Subject: [PATCH] ci/macos: fix fallback cache key (#12188) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit No wonder the macOS builds take so long… --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 94f99b8e8..a75465355 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -103,7 +103,7 @@ jobs: with: path: /Users/runner/Library/Caches/ccache key: ${{ env.CACHE_EPOCH }}-${{ runner.os }}-${{ runner.arch }}-ccache-${{ hashFiles('base/cache-key') }} - restore-keys: ${{ env.CACHE_EPOCH }}-${{ runner.os }}-ccache- + restore-keys: ${{ env.CACHE_EPOCH }}-${{ runner.os }}-${{ runner.arch }}-ccache- - name: Install ccache if: steps.build-restore.outputs.cache-hit != 'true'