diff options
author | crupest <crupest@outlook.com> | 2022-01-20 23:26:53 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-01-20 23:26:53 +0800 |
commit | 31b44ba689a6a8681e3e7b39942df3c0d4e47d37 (patch) | |
tree | ddb5acd8f8213db41c06975e72ff05d1efbdd9df /.github/workflows | |
parent | e021741e654ca53ba1dc1d6f3bf8219154912ec7 (diff) | |
download | cru-31b44ba689a6a8681e3e7b39942df3c0d4e47d37.tar.gz cru-31b44ba689a6a8681e3e7b39942df3c0d4e47d37.tar.bz2 cru-31b44ba689a6a8681e3e7b39942df3c0d4e47d37.zip |
...
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 676531a7..e7ea768d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,9 @@ on: - "docs/**" - "**/README.md" +env: + VCPKG_DEFAULT_BINARY_CACHE: /tmp/vcpkg-cache + jobs: macos-build: name: macOS Build @@ -23,7 +26,7 @@ jobs: - name: Restore Cache uses: actions/cache@v2 with: - path: ~/.cache/vcpkg/archives + path: /tmp/vcpkg-cache key: vcpkg-${{ runner.os }} - name: Setup Ninja @@ -51,7 +54,7 @@ jobs: - name: Restore Cache uses: actions/cache@v2 with: - path: ~/AppData/Local/vcpkg/archives + path: /tmp/vcpkg-cache key: vcpkg-${{ runner.os }} - name: Setup Ninja |