diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2022-02-14 14:17:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-14 14:17:14 +0100 |
| commit | f67c82912fde55a58d565697263306c840b3efd4 (patch) | |
| tree | 4e0949d90d975db639e2020bf76982b3ddda465a | |
| parent | 2235bef8a9de0f032722d1117f86752cd5f907e2 (diff) | |
| parent | db2ae2e01ad5eee406ce2e198f735eeb10ea07f6 (diff) | |
| download | PROJ-f67c82912fde55a58d565697263306c840b3efd4.tar.gz PROJ-f67c82912fde55a58d565697263306c840b3efd4.zip | |
Merge pull request #3052 from mwtoews/ci-mac-ccache
CI: set CCACHE_DIR for macOS
| -rw-r--r-- | .github/workflows/mac.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 1ccbd938..c2855b10 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -20,7 +20,7 @@ jobs: uses: actions/cache@v2 id: cache with: - path: ~/.ccache + path: ${{ github.workspace }}/.ccache key: ${{ runner.os }}-cache-mac-${{ github.run_id }} restore-keys: ${{ runner.os }}-cache-mac- @@ -35,5 +35,6 @@ jobs: export TRAVIS_BUILD_DIR=$PWD source .github/workflows/mac/install.sh env: + CCACHE_DIR: ${{ github.workspace }}/.ccache TRAVIS_OS_NAME: osx BUILD_NAME: osx |
