Skip to content

Commit 0265da1

Browse files
committed
Update dependency for bytestring-0.11, add 9.2 CI
1 parent 0c7469b commit 0265da1

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 9 additions & 4 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.14
11+
# version: 0.14.3
1212
#
13-
# REGENDATA ("0.14",["github","cabal.project","--allow-failures",">= 9.2","--distribution","focal"])
13+
# REGENDATA ("0.14.3",["github","cabal.project","--allow-failures",">= 9.2","--distribution","focal"])
1414
#
1515
name: Haskell-CI
1616
on:
@@ -32,6 +32,11 @@ jobs:
3232
strategy:
3333
matrix:
3434
include:
35+
- compiler: ghc-9.2.2
36+
compilerKind: ghc
37+
compilerVersion: 9.2.2
38+
setup-method: ghcup
39+
allow-failure: true
3540
- compiler: ghc-9.0.2
3641
compilerKind: ghc
3742
compilerVersion: 9.0.2
@@ -60,7 +65,7 @@ jobs:
6065
apt-get install -y --no-install-recommends gnupg ca-certificates dirmngr curl git software-properties-common libtinfo5
6166
if [ "${{ matrix.setup-method }}" = ghcup ]; then
6267
mkdir -p "$HOME/.ghcup/bin"
63-
curl -sL https://downloads.haskell.org/ghcup/0.1.17.3/x86_64-linux-ghcup-0.1.17.3 > "$HOME/.ghcup/bin/ghcup"
68+
curl -sL https://downloads.haskell.org/ghcup/0.1.17.5/x86_64-linux-ghcup-0.1.17.5 > "$HOME/.ghcup/bin/ghcup"
6469
chmod a+x "$HOME/.ghcup/bin/ghcup"
6570
"$HOME/.ghcup/bin/ghcup" install ghc "$HCVER"
6671
"$HOME/.ghcup/bin/ghcup" install cabal 3.6.2.0
@@ -69,7 +74,7 @@ jobs:
6974
apt-get update
7075
apt-get install -y "$HCNAME"
7176
mkdir -p "$HOME/.ghcup/bin"
72-
curl -sL https://downloads.haskell.org/ghcup/0.1.17.3/x86_64-linux-ghcup-0.1.17.3 > "$HOME/.ghcup/bin/ghcup"
77+
curl -sL https://downloads.haskell.org/ghcup/0.1.17.5/x86_64-linux-ghcup-0.1.17.5 > "$HOME/.ghcup/bin/ghcup"
7378
chmod a+x "$HOME/.ghcup/bin/ghcup"
7479
"$HOME/.ghcup/bin/ghcup" install cabal 3.6.2.0
7580
fi

servant-multipart-api/servant-multipart-api.cabal

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ tested-with:
2020
|| ==8.8.4
2121
|| ==8.10.7
2222
|| ==9.0.2
23+
|| ==9.2.2
2324

2425
library
2526
default-language: Haskell2010
@@ -29,7 +30,7 @@ library
2930
-- ghc boot libs
3031
build-depends:
3132
base >=4.9 && <5
32-
, bytestring >=0.10.8.1 && <0.11
33+
, bytestring >=0.10.8.1 && <0.12
3334
, text >=1.2.3.0 && <2.1
3435
, transformers >=0.5.2.0 && <0.6
3536

servant-multipart-client/servant-multipart-client.cabal

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ tested-with:
1919
|| ==8.8.4
2020
|| ==8.10.7
2121
|| ==9.0.2
22+
|| ==9.2.2
2223

2324
library
2425
default-language: Haskell2010
@@ -29,7 +30,7 @@ library
2930
build-depends:
3031
array >=0.5.1.1 && <0.6
3132
, base >=4.9 && <5
32-
, bytestring >=0.10.8.1 && <0.11
33+
, bytestring >=0.10.8.1 && <0.12
3334
, text >=1.2.3.0 && <2.1
3435
, random >=0.1.1 && <1.3
3536

servant-multipart/servant-multipart.cabal

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ tested-with:
1919
|| ==8.8.4
2020
|| ==8.10.7
2121
|| ==9.0.2
22+
|| ==9.2.2
2223

2324
library
2425
default-language: Haskell2010
@@ -28,7 +29,7 @@ library
2829
-- ghc boot libs
2930
build-depends:
3031
base >=4.9 && <5
31-
, bytestring >=0.10.8.1 && <0.11
32+
, bytestring >=0.10.8.1 && <0.12
3233
, directory >=1.3 && <1.4
3334
, text >=1.2.3.0 && <2.1
3435

0 commit comments

Comments
 (0)