Skip to content

Commit

Permalink
Merge pull request #5006 from input-output-hk/newhoggy/upgrade-to-cab…
Browse files Browse the repository at this point in the history
…al-3.10.1.0

Upgrade to cabal-3.10.1.0
  • Loading branch information
newhoggy committed Mar 21, 2023
2 parents 7f52046 + bb4b1c9 commit c83b479
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-cabal-files.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: input-output-hk/setup-haskell@v1
id: setup-haskell
with:
cabal-version: "3.8.1.0"
cabal-version: "3.10.1.0"

- uses: actions/checkout@v3

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/github-page.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
ghc: ["9.2.7"]
cabal: ["3.8.1.0"]
cabal: ["3.10.1.0"]
os: [ubuntu-latest]

env:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
dist-dir: dist-newstyle
store-path: ${{ steps.cabal-store.outputs.cabal-store }}
threads: 16
archive-uri: ${{ secrets.BINARY_CACHE_URI }}/${{ env.CABAL_CACHE_VERSION }}/${{ runner.os }}
archive-uri: ${{ secrets.BINARY_CACHE_URI }}/${{ env.CABAL_CACHE_VERSION }}/${{ runner.os }}/${{ matrix.cabal }}/${{ matrix.ghc }}
skip: "${{ secrets.BINARY_CACHE_URI == '' }}"

- name: Cabal cache over HTTPS
Expand All @@ -96,7 +96,7 @@ jobs:
dist-dir: dist-newstyle
store-path: ${{ steps.cabal-store.outputs.cabal-store }}
threads: 16
archive-uri: https://iohk.cache.haskellworks.io/${{ env.CABAL_CACHE_VERSION }}/${{ runner.os }}
archive-uri: https://iohk.cache.haskellworks.io/${{ env.CABAL_CACHE_VERSION }}/${{ runner.os }}/${{ matrix.cabal }}/${{ matrix.ghc }}
skip: "${{ secrets.BINARY_CACHE_URI != '' }}"
enable-save: false

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/haskell-linux.yml
Expand Up @@ -11,8 +11,8 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ["8.10.7", "9.2.7" ]
cabal: ["3.8.1.0"]
ghc: ["8.10.7", "9.2.7"]
cabal: ["3.10.1.0"]
os: [ubuntu-latest]

env:
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
dist-dir: dist-newstyle
store-path: ${{ steps.setup-haskell.outputs.cabal-store }}
threads: 16
archive-uri: ${{ secrets.BINARY_CACHE_URI }}/${{ env.CABAL_CACHE_VERSION }}/${{ runner.os }}
archive-uri: ${{ secrets.BINARY_CACHE_URI }}/${{ env.CABAL_CACHE_VERSION }}/${{ runner.os }}/${{ matrix.cabal }}/${{ matrix.ghc }}
skip: "${{ secrets.BINARY_CACHE_URI == '' }}"

# It's important to ensure that people who fork this repository can not only successfully build in
Expand All @@ -129,7 +129,7 @@ jobs:
dist-dir: dist-newstyle
store-path: ${{ steps.setup-haskell.outputs.cabal-store }}
threads: 16
archive-uri: https://iohk.cache.haskellworks.io/${{ env.CABAL_CACHE_VERSION }}/${{ runner.os }}
archive-uri: https://iohk.cache.haskellworks.io/${{ env.CABAL_CACHE_VERSION }}/${{ runner.os }}/${{ matrix.cabal }}/${{ matrix.ghc }}
skip: "${{ secrets.BINARY_CACHE_URI != '' }}"
enable-save: false

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/haskell.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
ghc: ["9.2.7"]
cabal: ["3.8.1.0"]
cabal: ["3.10.1.0"]
os: [macos-latest, windows-latest]

env:
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
dist-dir: dist-newstyle
store-path: ${{ steps.setup-haskell.outputs.cabal-store }}
threads: 16
archive-uri: ${{ secrets.BINARY_CACHE_URI }}/${{ env.CABAL_CACHE_VERSION }}/${{ runner.os }}
archive-uri: ${{ secrets.BINARY_CACHE_URI }}/${{ env.CABAL_CACHE_VERSION }}/${{ runner.os }}/${{ matrix.cabal }}/${{ matrix.ghc }}
skip: "${{ secrets.BINARY_CACHE_URI == '' }}"

# It's important to ensure that people who fork this repository can not only successfully build in
Expand All @@ -144,7 +144,7 @@ jobs:
dist-dir: dist-newstyle
store-path: ${{ steps.setup-haskell.outputs.cabal-store }}
threads: 16
archive-uri: https://iohk.cache.haskellworks.io/${{ env.CABAL_CACHE_VERSION }}/${{ runner.os }}
archive-uri: https://iohk.cache.haskellworks.io/${{ env.CABAL_CACHE_VERSION }}/${{ runner.os }}/${{ matrix.cabal }}/${{ matrix.ghc }}
skip: "${{ secrets.BINARY_CACHE_URI != '' }}"
enable-save: false

Expand Down

0 comments on commit c83b479

Please sign in to comment.