Skip to content

Commit 42ffbc8

Browse files
committed
GHC 9.14
1 parent 037d9fc commit 42ffbc8

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@
88
#
99
# For more information, see https://github.com/haskell-CI/haskell-ci
1010
#
11-
# version: 0.19.20250710
11+
# version: 0.19.20260104
1212
#
13-
# REGENDATA ("0.19.20250710",["github","--config=cabal.haskell-ci","--benchmarks-jobs=<9.0","cabal.project"])
13+
# REGENDATA ("0.19.20260104",["github","--config=cabal.haskell-ci","--benchmarks-jobs=<9.0","cabal.project"])
1414
#
1515
name: Haskell-CI
1616
on:
1717
- push
1818
- pull_request
19+
- merge_group
1920
jobs:
2021
linux:
2122
name: Haskell-CI - Linux - ${{ matrix.compiler }}
@@ -28,6 +29,11 @@ jobs:
2829
strategy:
2930
matrix:
3031
include:
32+
- compiler: ghc-9.14.1
33+
compilerKind: ghc
34+
compilerVersion: 9.14.1
35+
setup-method: ghcup
36+
allow-failure: false
3137
- compiler: ghc-9.12.1
3238
compilerKind: ghc
3339
compilerVersion: 9.12.1
@@ -106,8 +112,8 @@ jobs:
106112
chmod a+x "$HOME/.ghcup/bin/ghcup"
107113
- name: Install cabal-install
108114
run: |
109-
"$HOME/.ghcup/bin/ghcup" install cabal 3.14.2.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
110-
echo "CABAL=$HOME/.ghcup/bin/cabal-3.14.2.0 -vnormal+nowrap" >> "$GITHUB_ENV"
115+
"$HOME/.ghcup/bin/ghcup" install cabal 3.16.0.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
116+
echo "CABAL=$HOME/.ghcup/bin/cabal-3.16.0.0 -vnormal+nowrap" >> "$GITHUB_ENV"
111117
- name: Install GHC (GHCup)
112118
if: matrix.setup-method == 'ghcup'
113119
run: |
@@ -198,7 +204,7 @@ jobs:
198204
key: ${{ runner.os }}-${{ matrix.compiler }}-tools-1e18572f
199205
path: ~/.haskell-ci-tools
200206
- name: checkout
201-
uses: actions/checkout@v4
207+
uses: actions/checkout@v5
202208
with:
203209
path: source
204210
- name: initial cabal.project for sdist

generics-sop/generics-sop.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ category: Generics
4343
build-type: Simple
4444
cabal-version: >=1.10
4545
extra-source-files: CHANGELOG.md doctest.sh
46-
tested-with: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.7, GHC == 9.4.4, GHC == 9.6.6, GHC == 9.8.4, GHC == 9.10.1, GHC == 9.12.1
46+
tested-with: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.7, GHC == 9.4.4, GHC == 9.6.6, GHC == 9.8.4, GHC == 9.10.1, GHC == 9.12.1, GHC == 9.14.1
4747

4848
source-repository head
4949
type: git
@@ -66,9 +66,9 @@ library
6666
Generics.SOP.NP
6767
Generics.SOP.NS
6868
Generics.SOP.Sing
69-
build-depends: base >= 4.9 && < 4.22,
69+
build-depends: base >= 4.9 && < 4.23,
7070
sop-core == 0.5.0.*,
71-
template-haskell >= 2.8 && < 2.24,
71+
template-haskell >= 2.8 && < 2.25,
7272
th-abstraction >= 0.6 && < 0.8,
7373
ghc-prim >= 0.3 && < 0.14
7474
hs-source-dirs: src

sop-core/sop-core.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ category: Data
2626
build-type: Simple
2727
cabal-version: >=1.10
2828
extra-source-files: CHANGELOG.md doctest.sh
29-
tested-with: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.7, GHC == 9.4.4, GHC == 9.6.6, GHC == 9.8.4, GHC == 9.10.1, GHC == 9.12.1
29+
tested-with: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.7, GHC == 9.4.4, GHC == 9.6.6, GHC == 9.8.4, GHC == 9.10.1, GHC == 9.12.1, GHC == 9.14.1
3030

3131
source-repository head
3232
type: git
@@ -42,7 +42,7 @@ library
4242
Data.SOP.NP
4343
Data.SOP.NS
4444
Data.SOP.Sing
45-
build-depends: base >= 4.9 && < 4.22,
45+
build-depends: base >= 4.9 && < 4.23,
4646
deepseq >= 1.3 && < 1.6
4747
hs-source-dirs: src
4848
default-language: Haskell2010

0 commit comments

Comments
 (0)