Skip to content

Commit 6febb0c

Browse files
committed
CI: GHC 9.2.1 -> 9.2.3
1 parent 0a2e68c commit 6febb0c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
strategy:
3939
matrix:
4040
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
41-
ghc: ["9.2.1", "9.0.2", "8.10.7", "8.8.4", "8.6.5", "8.4.4", "8.0.2"]
41+
ghc: ["9.2.3", "9.0.2", "8.10.7", "8.8.4", "8.6.5", "8.4.4", "8.0.2"]
4242
exclude:
4343
# lot of segfaults caused by ghc bugs
4444
- os: "windows-latest"

cabal-testsuite/PackageTests/Backpack/Includes2/setup-external.test.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Test.Cabal.Prelude
22
main = setupAndCabalTest $ do
33
skipUnlessGhcVersion ">= 8.1"
4-
ghc <- isGhcVersion "== 9.0.2 || == 9.2.1"
4+
ghc <- isGhcVersion "== 9.0.* || == 9.2.*"
55
expectBrokenIf ghc 7987 $ do
66
withPackageDb $ do
77
withDirectory "mylib" $ setup_install_with_docs ["--ipid", "mylib-0.1.0.0"]

cabal-testsuite/PackageTests/Backpack/Includes2/setup-per-component.test.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Test.Cabal.Prelude
22
main = setupTest $ do
33
-- No cabal test because per-component is broken with it
44
skipUnlessGhcVersion ">= 8.1"
5-
ghc <- isGhcVersion "== 9.0.2 || == 9.2.1"
5+
ghc <- isGhcVersion "== 9.0.* || == 9.2.*"
66
expectBrokenIf ghc 7987 $
77
withPackageDb $ do
88
let setup_install' args = setup_install_with_docs (["--cabal-file", "Includes2.cabal"] ++ args)

cabal-testsuite/PackageTests/Backpack/Includes3/setup-external-ok.test.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Data.List
33
import qualified Data.Char as Char
44
main = setupAndCabalTest $ do
55
skipUnlessGhcVersion ">= 8.1"
6-
ghc <- isGhcVersion "== 9.0.2 || == 9.2.1"
6+
ghc <- isGhcVersion "== 9.0.* || == 9.2.*"
77
expectBrokenIf ghc 7987 $
88
withPackageDb $ do
99
containers_id <- getIPID "containers"

0 commit comments

Comments
 (0)