Skip to content

Commit e81a202

Browse files
authored
Merge pull request #711 from haskell-CI/ghc-9.10-alpha2
GHC-9.10 alpha2 i.e. ghc-9.10.0.20240328
2 parents c07791e + 01c785f commit e81a202

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.github/workflows/haskell-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
cabal-docspec --version
186186
- name: install doctest
187187
run: |
188-
if [ $((HCNUMVER < 90000)) -ne 0 ] ; then $CABAL --store-dir=$HOME/.haskell-ci-tools/store v2-install $ARG_COMPILER --ignore-project -j2 doctest --constraint='doctest ^>=0.20' ; fi
188+
if [ $((HCNUMVER < 90000)) -ne 0 ] ; then $CABAL --store-dir=$HOME/.haskell-ci-tools/store v2-install $ARG_COMPILER --ignore-project -j2 doctest --constraint='doctest ^>=0.22.0' ; fi
189189
if [ $((HCNUMVER < 90000)) -ne 0 ] ; then doctest --version ; fi
190190
- name: save cache (tools)
191191
uses: actions/cache/save@v3

fixtures/all-versions.github

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
compilerVersion: "8.4"
3434
setup-method: hvr-ppa
3535
allow-failure: false
36-
- compiler: ghc-9.10.0.20240313
36+
- compiler: ghc-9.10.0.20240328
3737
compilerKind: ghc
38-
compilerVersion: 9.10.0.20240313
38+
compilerVersion: 9.10.0.20240328
3939
setup-method: ghcup
4040
allow-failure: false
4141
- compiler: ghc-9.8.2

fixtures/doctest-version.github

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
compilerVersion: "8.4"
3434
setup-method: hvr-ppa
3535
allow-failure: false
36-
- compiler: ghc-9.10.0.20240313
36+
- compiler: ghc-9.10.0.20240328
3737
compilerKind: ghc
38-
compilerVersion: 9.10.0.20240313
38+
compilerVersion: 9.10.0.20240328
3939
setup-method: ghcup
4040
allow-failure: false
4141
- compiler: ghc-9.8.2

fixtures/doctest.github

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
compilerVersion: "8.4"
3434
setup-method: hvr-ppa
3535
allow-failure: false
36-
- compiler: ghc-9.10.0.20240313
36+
- compiler: ghc-9.10.0.20240328
3737
compilerKind: ghc
38-
compilerVersion: 9.10.0.20240313
38+
compilerVersion: 9.10.0.20240328
3939
setup-method: ghcup
4040
allow-failure: false
4141
- compiler: ghc-9.8.2

fixtures/enabled-jobs.github

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
compilerVersion: "8.4"
3434
setup-method: hvr-ppa
3535
allow-failure: false
36-
- compiler: ghc-9.10.0.20240313
36+
- compiler: ghc-9.10.0.20240328
3737
compilerKind: ghc
38-
compilerVersion: 9.10.0.20240313
38+
compilerVersion: 9.10.0.20240328
3939
setup-method: ghcup
4040
allow-failure: false
4141
- compiler: ghc-9.8.2

haskell-ci.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: haskell-ci
3-
version: 0.19.20240316
3+
version: 0.19.20240402
44
synopsis: Cabal package script generator for Travis-CI
55
description:
66
Script generator (@haskell-ci@) for

haskell-ci.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ run_cmd cabal-plan --version
447447
# install doctest
448448
put_info "install doctest"
449449
# install doctest
450-
run_cmd_if $((HCNUMVER < 90000)) $CABAL v2-install $ARG_COMPILER --ignore-project -j doctest --constraint='doctest ^>=0.20'
450+
run_cmd_if $((HCNUMVER < 90000)) $CABAL v2-install $ARG_COMPILER --ignore-project -j doctest --constraint='doctest ^>=0.22.0'
451451
run_cmd_if $((HCNUMVER < 90000)) doctest --version
452452

453453
# initial cabal.project for sdist

src/HaskellCI/Compiler.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ dispCabalVersion :: Maybe Version -> String
190190
dispCabalVersion = maybe "head" C.prettyShow
191191

192192
ghcAlpha :: Maybe (Version, Version)
193-
ghcAlpha = Just (mkVersion [9,10,1], mkVersion [9,10,0,20240313])
193+
ghcAlpha = Just (mkVersion [9,10,1], mkVersion [9,10,0,20240328])
194194

195195
-- | GHC HEAD, and versions specified by head.hackage option.
196196
usesHeadHackage

0 commit comments

Comments
 (0)