diff options
| author | John MacFarlane <[email protected]> | 2023-02-08 20:17:30 -0800 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2023-02-08 20:17:30 -0800 |
| commit | 4edc02d3b5b4a297bf0cd9ac2b16bb85c2b15d00 (patch) | |
| tree | fec47c98c771d3954a9e4dcd6522a23e465331f3 /.github | |
| parent | 3c6e339a36247a8604662097c428bb8662751ac0 (diff) | |
Windows CI: don't cache local packages.
We're running into a stack bug with internal libraries.
See commercialhaskell/stack#6046.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3f0fd4b6..e61c1fa14 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -126,14 +126,14 @@ jobs: C:\Users\runneradmin\AppData\Roaming\stack\ key: ${{ runner.os }}-appdata-roaming-stack-${{ hashFiles('stack.yaml') }} - # stack's local package dbs for the project and each package - - name: Cache .stack-work - uses: actions/cache@v3 - with: - path: | - .stack-work - key: ${{ runner.os }}-stack-work-${{ hashFiles('stack.yaml') }}-${{ secrets.CACHE_VERSION }} - restore-keys: ${{ runner.os }}-stack-work-${{ secrets.CACHE_VERSION }} +# # stack's local package dbs for the project and each package +# - name: Cache .stack-work +# uses: actions/cache@v3 +# with: +# path: | +# .stack-work +# key: ${{ runner.os }}-stack-work-${{ hashFiles('stack.yaml') }}-${{ secrets.CACHE_VERSION }} +# restore-keys: ${{ runner.os }}-stack-work-${{ secrets.CACHE_VERSION }} - name: Install dependencies run: | |
