Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit aa7bca1

Browse files
author
Hendrik van Antwerpen
committed
Disable cache
1 parent febde10 commit aa7bca1

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.github/workflows/haskell.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -28,30 +28,30 @@ jobs:
2828
with:
2929
ghc-version: ${{ matrix.ghc }}
3030

31-
- uses: actions/cache@v4
32-
id: cache-cabal
33-
name: Cache Cabal artifacts
34-
with:
35-
path: dist-cache
36-
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ matrix.cabal }}-cabal-cache-${{ hashFiles('**/*.cabal') }}
37-
restore-keys: |
38-
${{ runner.os }}-${{ matrix.ghc }}-${{ matrix.cabal }}-cabal-cache-
39-
${{ runner.os }}-${{ matrix.ghc }}-${{ matrix.cabal }}-
40-
${{ runner.os }}-${{ matrix.ghc }}-
41-
${{ runner.os }}-
31+
# - uses: actions/cache@v4
32+
# id: cache-cabal
33+
# name: Cache Cabal artifacts
34+
# with:
35+
# path: dist-cache
36+
# key: ${{ runner.os }}-${{ matrix.ghc }}-${{ matrix.cabal }}-cabal-cache-${{ hashFiles('**/*.cabal') }}
37+
# restore-keys: |
38+
# ${{ runner.os }}-${{ matrix.ghc }}-${{ matrix.cabal }}-cabal-cache-
39+
# ${{ runner.os }}-${{ matrix.ghc }}-${{ matrix.cabal }}-
40+
# ${{ runner.os }}-${{ matrix.ghc }}-
41+
# ${{ runner.os }}-
4242

43-
- name: Get cabal-cache
44-
run: |
45-
cabal new-install cabal-cache
43+
# - name: Get cabal-cache
44+
# run: |
45+
# cabal new-install cabal-cache
4646

4747
- name: Configure project
4848
run: |
4949
cabal v2-update
5050
cabal v2-configure --project-file=cabal.project.ci --disable-optimization --enable-tests --write-ghc-environment-files=always -j2
5151
cd semantic-source && cabal v2-configure --project-file=cabal.project.ci --disable-optimization --enable-tests --write-ghc-environment-files=always -j2
5252
53-
- name: Restore from cache
54-
run: cabal-cache sync-from-archive --threads=2 --archive-uri=dist-cache || true
53+
# - name: Restore from cache
54+
# run: cabal-cache sync-from-archive --threads=2 --archive-uri=dist-cache || true
5555

5656
- name: Build & test
5757
run: |
@@ -71,5 +71,5 @@ jobs:
7171
cabal v2-run --project-file=cabal.project.ci semantic-typescript:test
7272
cd semantic-source && cabal v2-run --project-file=cabal.project.ci semantic-source:test
7373
74-
- name: Write out cache
75-
run: cabal-cache sync-to-archive --threads=2 --archive-uri=dist-cache
74+
# - name: Write out cache
75+
# run: cabal-cache sync-to-archive --threads=2 --archive-uri=dist-cache

0 commit comments

Comments
 (0)