From abeb38611121983172924c71420f088c5a69989b Mon Sep 17 00:00:00 2001 From: Zubin Duggal Date: Wed, 26 Nov 2025 19:13:11 +0530 Subject: [PATCH] Use 9.10.2 instead of 9.10.3 for CI on windows 9.10.2 is currently broken with TH on windows. See https://gitlab.haskell.org/ghc/ghc/-/issues/26613 --- .github/workflows/test.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ca2abd0084..b4b1ea22a2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -76,6 +76,11 @@ jobs: test: - true - false + include: + # 9.10.3 is broken on windows + - os: windows-latest + test: true + ghc: "9.10.2" exclude: # Exclude the test configuration on macos, it's sufficiently similar to other OSs # that it mostly just burns CI time. Buiding is still useful since it catches @@ -87,6 +92,9 @@ jobs: test: false - os: ubuntu-latest test: false + # 9.10.3 is broken on windows + - os: windows-latest + ghc: "9.10" steps: - uses: actions/checkout@v3