Skip to content

Commit cc014c7

Browse files
authored
Update CI to latest GHC minor versions (#127)
1 parent e4fbf94 commit cc014c7

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#
99
# For more information, see https://github.com/haskell-CI/haskell-ci
1010
#
11-
# version: 0.15.20230312
11+
# version: 0.16.3
1212
#
13-
# REGENDATA ("0.15.20230312",["github","pqueue.cabal"])
13+
# REGENDATA ("0.16.3",["github","pqueue.cabal"])
1414
#
1515
name: Haskell-CI
1616
on:
@@ -28,14 +28,14 @@ jobs:
2828
strategy:
2929
matrix:
3030
include:
31-
- compiler: ghc-9.6.1
31+
- compiler: ghc-9.6.2
3232
compilerKind: ghc
33-
compilerVersion: 9.6.1
33+
compilerVersion: 9.6.2
3434
setup-method: ghcup
3535
allow-failure: false
36-
- compiler: ghc-9.4.4
36+
- compiler: ghc-9.4.5
3737
compilerKind: ghc
38-
compilerVersion: 9.4.4
38+
compilerVersion: 9.4.5
3939
setup-method: ghcup
4040
allow-failure: false
4141
- compiler: ghc-9.2.7
@@ -91,7 +91,7 @@ jobs:
9191
apt-get install -y --no-install-recommends gnupg ca-certificates dirmngr curl git software-properties-common libtinfo5
9292
if [ "${{ matrix.setup-method }}" = ghcup ]; then
9393
mkdir -p "$HOME/.ghcup/bin"
94-
curl -sL https://downloads.haskell.org/ghcup/0.1.18.0/x86_64-linux-ghcup-0.1.18.0 > "$HOME/.ghcup/bin/ghcup"
94+
curl -sL https://downloads.haskell.org/ghcup/0.1.19.2/x86_64-linux-ghcup-0.1.19.2 > "$HOME/.ghcup/bin/ghcup"
9595
chmod a+x "$HOME/.ghcup/bin/ghcup"
9696
"$HOME/.ghcup/bin/ghcup" install ghc "$HCVER" || (cat "$HOME"/.ghcup/logs/*.* && false)
9797
"$HOME/.ghcup/bin/ghcup" install cabal 3.10.1.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
@@ -100,7 +100,7 @@ jobs:
100100
apt-get update
101101
apt-get install -y "$HCNAME"
102102
mkdir -p "$HOME/.ghcup/bin"
103-
curl -sL https://downloads.haskell.org/ghcup/0.1.18.0/x86_64-linux-ghcup-0.1.18.0 > "$HOME/.ghcup/bin/ghcup"
103+
curl -sL https://downloads.haskell.org/ghcup/0.1.19.2/x86_64-linux-ghcup-0.1.19.2 > "$HOME/.ghcup/bin/ghcup"
104104
chmod a+x "$HOME/.ghcup/bin/ghcup"
105105
"$HOME/.ghcup/bin/ghcup" install cabal 3.10.1.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
106106
fi
@@ -178,8 +178,8 @@ jobs:
178178
- name: install cabal-plan
179179
run: |
180180
mkdir -p $HOME/.cabal/bin
181-
curl -sL https://github.com/haskell-hvr/cabal-plan/releases/download/v0.6.2.0/cabal-plan-0.6.2.0-x86_64-linux.xz > cabal-plan.xz
182-
echo 'de73600b1836d3f55e32d80385acc055fd97f60eaa0ab68a755302685f5d81bc cabal-plan.xz' | sha256sum -c -
181+
curl -sL https://github.com/haskell-hvr/cabal-plan/releases/download/v0.7.3.0/cabal-plan-0.7.3.0-x86_64-linux.xz > cabal-plan.xz
182+
echo 'f62ccb2971567a5f638f2005ad3173dba14693a45154c1508645c52289714cb2 cabal-plan.xz' | sha256sum -c -
183183
xz -d < cabal-plan.xz > $HOME/.cabal/bin/cabal-plan
184184
rm -f cabal-plan.xz
185185
chmod a+x $HOME/.cabal/bin/cabal-plan

pqueue.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ bug-reports: https://github.com/lspitzner/pqueue/issues
1616
build-type: Simple
1717
cabal-version: >= 1.10
1818
tested-with: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4,
19-
GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.7, GHC == 9.4.4, GHC == 9.6.1
19+
GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.7, GHC == 9.4.5, GHC == 9.6.2
2020
extra-source-files:
2121
CHANGELOG.md
2222
README.md

0 commit comments

Comments
 (0)