Skip to content

Commit

Permalink
Add support for GHC 9.12, drop support for GHC 9.6 (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
tfausak authored Feb 1, 2025
1 parent 3f90100 commit ccd1c08
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,24 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: mkdir artifact
- id: haskell
uses: haskell-actions/setup@v2
- uses: haskell/ghcup-setup@v1
with:
ghc-version: ${{ matrix.ghc }}
ghc: ${{ matrix.ghc }}
cabal: latest
- run: ghc-pkg list
- run: cabal sdist --output-dir artifact
- run: cabal configure --enable-tests --flags=pedantic --jobs
- run: cat cabal.project.local
- run: cp cabal.project.local artifact
- run: cabal update
- run: cabal freeze
- run: cat cabal.project.freeze
- run: cp cabal.project.freeze artifact
- run: cabal outdated --v2-freeze-file
- uses: actions/cache@v4
with:
key: ${{ matrix.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
path: ${{ steps.haskell.outputs.cabal-store }}
path: ~/.local/state/cabal
restore-keys: ${{ matrix.os }}-${{ matrix.ghc }}-
- run: cabal build --only-download
- run: cabal build --only-dependencies
Expand All @@ -35,17 +36,17 @@ jobs:
strategy:
matrix:
include:
- ghc: '9.10'
- ghc: 9.12
os: macos-13
- ghc: '9.10'
- ghc: 9.12
os: macos-14
- ghc: 9.6
os: ubuntu-22.04
- ghc: 9.8
os: ubuntu-22.04
- ghc: '9.10'
os: ubuntu-22.04
os: ubuntu-24.04
- ghc: '9.10'
os: ubuntu-24.04
- ghc: 9.12
os: ubuntu-24.04
- ghc: 9.12
os: windows-2022
cabal:
name: Cabal
Expand Down Expand Up @@ -85,7 +86,7 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: flow-${{ github.sha }}-ubuntu-22.04-9.10
name: flow-${{ github.sha }}-ubuntu-24.04-9.12
- run: tar --extract --file artifact.tar --verbose
- uses: softprops/action-gh-release@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion flow.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ flag pedantic
manual: True

common library
build-depends: base ^>=4.18.0.0 || ^>=4.19.0.0 || ^>=4.20.0.0
build-depends: base ^>=4.19.0.0 || ^>=4.20.0.0 || ^>=4.21.0.0
default-language: Haskell2010
ghc-options:
-Weverything
Expand Down

0 comments on commit ccd1c08

Please sign in to comment.