Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.12.2
compilerKind: ghc
compilerVersion: 9.12.2
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.10.2
compilerKind: ghc
compilerVersion: 9.10.2
Expand Down
5 changes: 3 additions & 2 deletions cabal-install-parsers/cabal-install-parsers.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ tested-with:
|| ==9.6.7
|| ==9.8.4
|| ==9.10.2
|| ==9.12.2

extra-source-files:
Changelog.md
Expand Down Expand Up @@ -65,7 +66,7 @@ library

-- GHC-boot libraries
build-depends:
, base >=4.13.0.0 && <4.21
, base >=4.13.0.0 && <4.22
, binary ^>=0.8.7.0
, bytestring ^>=0.10.10.1 || ^>=0.11.1.0 || ^>=0.12.0.2
, Cabal-syntax ^>=3.14.2.0
Expand All @@ -76,7 +77,7 @@ library
, parsec ^>=3.1.14.0
, pretty ^>=1.1.3.6
, text ^>=1.2.4.0 || ^>=2.0.1 || ^>=2.1
, time ^>=1.9.3 || ^>=1.11.1.1 || ^>=1.12.2
, time ^>=1.9.3 || ^>=1.11.1.1 || ^>=1.12.2 || ^>=1.14
, transformers ^>=0.5.6.2 || ^>=0.6.1.0

-- extra dependencies
Expand Down
3 changes: 2 additions & 1 deletion haskell-ci.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ tested-with:
|| ==9.6.7
|| ==9.8.4
|| ==9.10.2
|| ==9.12.2

extra-source-files: CHANGELOG.md
extra-source-files:
Expand Down Expand Up @@ -154,7 +155,7 @@ library haskell-ci-internal
ViewPatterns

build-depends:
, base >=4.13 && <4.21
, base >=4.13 && <4.22
, binary ^>=0.8.7.0
, bytestring ^>=0.10.10.1 || ^>=0.11.1.0 || ^>=0.12.0.2
, Cabal-syntax ^>=3.14.2.0
Expand Down
2 changes: 1 addition & 1 deletion haskell-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fi

CFG_CABAL_STORE_CACHE=""
CFG_CABAL_REPO_CACHE=""
CFG_JOBS="9.10.2 9.8.4 9.6.7 9.4.8 9.2.8 9.0.2 8.10.7 8.8.4"
CFG_JOBS="9.12.2 9.10.2 9.8.4 9.6.7 9.4.8 9.2.8 9.0.2 8.10.7 8.8.4"
CFG_CABAL_UPDATE=false

SCRIPT_NAME=$(basename "$0")
Expand Down
Loading