Skip to content

Commit

Permalink
Don’t cache dist-newstyle on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sergv committed Dec 15, 2024
1 parent 9bfc1b0 commit 3ff569f
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- uses: actions/checkout@v4

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Cache WASM cabal stuff
with:
path: |
Expand All @@ -65,13 +65,12 @@ jobs:
restore-keys: |
wasi-${{ runner.os }}-${{ matrix.ghc-wasm-meta-rev }}-flavour-${{ matrix.ghc }}
- uses: actions/cache@v3
name: Cache cabal stuff
- uses: actions/cache@v4
name: Cache cabal store
with:
path: |
${{ steps.setup-haskell-cabal.outputs.cabal-store }}
dist-newstyle
key: ${{ runner.os }}-${{ matrix.ghc }}
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ github.sha }}
restore-keys: ${{ runner.os }}-${{ matrix.ghc }}-

- name: Build dependencies
run: |
Expand Down

0 comments on commit 3ff569f

Please sign in to comment.