Skip to content

Commit

Permalink
cabal-testsuite borks on Windows under GHC 9.6
Browse files Browse the repository at this point in the history
Tracking: #8858
  • Loading branch information
ulysses4ever committed Mar 16, 2023
1 parent 1f8606c commit 465563c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,14 +187,17 @@ jobs:
run: sh validate.sh $FLAGS -s lib-tests

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

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

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

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

0 comments on commit 465563c

Please sign in to comment.