Skip to content

Commit 465563c

Browse files
committed
cabal-testsuite borks on Windows under GHC 9.6
Tracking: #8858
1 parent 1f8606c commit 465563c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/validate.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -187,14 +187,17 @@ jobs:
187187
run: sh validate.sh $FLAGS -s lib-tests
188188

189189
- name: Validate lib-suite
190+
# the [email protected] problem is tracked at https://github.com/haskell/cabal/issues/8858
191+
if: ${{ runner.os != 'Windows' }} || ${{ matrix.ghc != '9.6.1' }}
190192
run: sh validate.sh $FLAGS -s lib-suite
191193

192194
- name: Validate cli-tests
193195
if: matrix.cli != 'false'
194196
run: sh validate.sh $FLAGS -s cli-tests
195197

196198
- name: Validate cli-suite
197-
if: matrix.cli != 'false'
199+
# the [email protected] problem is tracked at https://github.com/haskell/cabal/issues/8858
200+
if: ${{ runner.os != 'Windows' }} || ${{ matrix.ghc != '9.6.1' }} || {{ matrix.cli != 'false' }}
198201
run: sh validate.sh $FLAGS -s cli-suite
199202

200203
# The job below is a copy-paste of validate with the necessary tweaks

0 commit comments

Comments
 (0)