Skip to content

Commit

Permalink
Merge pull request #754 from haskell-CI/ghc-9.12-alpha3
Browse files Browse the repository at this point in the history
GHC-9.12-alpha3
  • Loading branch information
phadej authored Nov 21, 2024
2 parents 27f84f6 + df7513d commit 1010767
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 11 deletions.
4 changes: 2 additions & 2 deletions fixtures/all-versions.github
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.12.0.20241031
- compiler: ghc-9.12.0.20241114
compilerKind: ghc
compilerVersion: 9.12.0.20241031
compilerVersion: 9.12.0.20241114
setup-method: ghcup-prerelease
allow-failure: false
- compiler: ghc-9.10.1
Expand Down
4 changes: 2 additions & 2 deletions fixtures/doctest-version.github
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.12.0.20241031
- compiler: ghc-9.12.0.20241114
compilerKind: ghc
compilerVersion: 9.12.0.20241031
compilerVersion: 9.12.0.20241114
setup-method: ghcup-prerelease
allow-failure: false
- compiler: ghc-9.10.1
Expand Down
4 changes: 2 additions & 2 deletions fixtures/doctest.github
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.12.0.20241031
- compiler: ghc-9.12.0.20241114
compilerKind: ghc
compilerVersion: 9.12.0.20241031
compilerVersion: 9.12.0.20241114
setup-method: ghcup-prerelease
allow-failure: false
- compiler: ghc-9.10.1
Expand Down
4 changes: 2 additions & 2 deletions fixtures/enabled-jobs.github
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.12.0.20241031
- compiler: ghc-9.12.0.20241114
compilerKind: ghc
compilerVersion: 9.12.0.20241031
compilerVersion: 9.12.0.20241114
setup-method: ghcup-prerelease
allow-failure: false
- compiler: ghc-9.10.1
Expand Down
4 changes: 2 additions & 2 deletions haskell-ci.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: haskell-ci
version: 0.19.20241114
version: 0.19.20241121
synopsis: Cabal package script generator for Travis-CI
description:
Script generator (@haskell-ci@) for
Expand Down Expand Up @@ -239,4 +239,4 @@ test-suite golden
, Diff ^>=0.4.0 || ^>=0.5
, tasty ^>=1.4.1 || ^>=1.5
, tasty-golden ^>=2.3.1.1
, tasty-hunit
, tasty-hunit
4 changes: 3 additions & 1 deletion src/HaskellCI/Config/History.hs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ configHistory =
, ghcupVanilla = C.withinVersion (C.mkVersion [9,8,3])
, ghcupPrerelease = C.orLaterVersion (C.mkVersion [9,12,0])
}
, ver 0 19 2024114 := \cfg -> cfg
, ver 0 19 20241114 := \cfg -> cfg
& field @"cfgSetupMethods" .~ PerSetupMethod
{ hvrPpa = C.noVersion
, ghcup = invertVersionRange (C.withinVersion (C.mkVersion [9,8,3])) /\ C.earlierVersion (C.mkVersion [9,12])
Expand All @@ -48,6 +48,8 @@ configHistory =
}
, ver 0 19 20241117 := \cfg -> cfg
& field @"cfgVersionMapping" .~ Map.singleton (mkVersion [9,12,1]) (mkVersion [9,12,0,20241031])
, ver 0 19 20241121 := \cfg -> cfg
& field @"cfgVersionMapping" .~ Map.singleton (mkVersion [9,12,1]) (mkVersion [9,12,0,20241114])
]
where
ver x y z = [x, y, z]
Expand Down

0 comments on commit 1010767

Please sign in to comment.