Skip to content

Commit

Permalink
ci: fix cache keys
Browse files Browse the repository at this point in the history
  • Loading branch information
luncliff committed Dec 17, 2023
1 parent b222f4f commit 226e8fa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
VCPKG_OVERLAY_TRIPLETS: ${{ github.workspace }}/triplets
steps:
- uses: actions/[email protected]
- uses: ConorMacBride/install-package@v1
with:
brew: curl bison nasm yasm meson nuget pkg-config
# - uses: ConorMacBride/install-package@v1
# with:
# brew: curl bison nasm yasm meson nuget pkg-config

- uses: actions/[email protected]
with:
Expand All @@ -36,7 +36,7 @@ jobs:
mkdir -p ${VCPKG_DEFAULT_BINARY_CACHE}
- uses: actions/cache@v3
with:
key: "v2349-${{ runner.os }}-${{ matrix.triplet }}"
key: "v2350-${{ runner.os }}-${{ matrix.triplet }}"
path: |
/usr/local/share/vcpkg-downloads
/usr/local/share/vcpkg-archives
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
VCPKG_DEFAULT_BINARY_CACHE: "${{ runner.temp }}/vcpkg-archives"
- uses: actions/cache@v3
with:
key: "v2349-${{ runner.os }}-${{ matrix.triplet }}"
key: "v2350-${{ runner.os }}-${{ matrix.triplet }}"
path: |
${{ runner.temp }}/vcpkg-downloads
${{ runner.temp }}/vcpkg-archives
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
New-Item -Type Directory -Force ${env:VCPKG_DEFAULT_BINARY_CACHE}
- uses: actions/cache@v3
with:
key: "v2349-${{ runner.os }}-${{ matrix.triplet }}"
key: "v2350-${{ runner.os }}-${{ matrix.triplet }}"
path: |
C:/vcpkg/downloads
C:/vcpkg/archives
Expand Down

0 comments on commit 226e8fa

Please sign in to comment.