diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index ce34a1a14..0c6c49215 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -217,6 +217,8 @@ jobs: with: path: /Users/runner/Library/Caches/ccache key: ${{ runner.os }}-compilation-cache-${{ github.sha }} + restore-keys: | + ${{ runner.os }}-compilation-cache- - name: Cache compilation (pull_request) if: github.event_name == 'pull_request' @@ -224,6 +226,8 @@ jobs: with: path: /Users/runner/Library/Caches/ccache key: ${{ runner.os }}-compilation-cache-${{ github.event.pull_request.base.sha }} + restore-keys: | + ${{ runner.os }}-compilation-cache- - name: Get tmpdir path if: github.event_name == 'push'