Skip to content

Commit

Permalink
Really fix cache-2
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmopetrich authored Nov 3, 2024
1 parent 17c1f6d commit 35ac077
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,15 +90,6 @@ jobs:
cache-key-prefix: test-${{ github.run_number }}-${{ github.run_attempt }}-
cache-save: true
toolset-version: "14.36.32532"
- name: Check cache
uses: actions/cache/restore@v4
with:
path: ${{ runner.temp }}/cache-test-${{ github.run_number }}-${{ github.run_attempt }}
key: test-${{ github.run_number }}-${{ github.run_attempt }}-14.36.17.6
- name: Ensure cache check hit
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
shell: bash
run: "false"
with-cache-2:
name: Cache (2)
needs: with-cache-1
Expand All @@ -116,3 +107,12 @@ jobs:
- name: Find expected version
shell: bash
run: "[ -d 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.36.32532' ]"
- name: Check cache
uses: actions/cache/restore@v4
with:
path: ${{ runner.temp }}/cache-test-${{ github.run_number }}-${{ github.run_attempt }}
key: test-${{ github.run_number }}-${{ github.run_attempt }}-14.36.32532
- name: Ensure cache check hit
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
shell: bash
run: "false"

0 comments on commit 35ac077

Please sign in to comment.