From 465563c6a39df9c2218c2a92f9aec16b996d8acd Mon Sep 17 00:00:00 2001 From: Artem Pelenitsyn Date: Wed, 15 Mar 2023 21:54:36 -0400 Subject: [PATCH] cabal-testsuite borks on Windows under GHC 9.6 Tracking: https://github.com/haskell/cabal/issues/8858 --- .github/workflows/validate.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index fe4a2196701..df09c637ac6 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -187,6 +187,8 @@ jobs: run: sh validate.sh $FLAGS -s lib-tests - name: Validate lib-suite + # the Windows@9.6.1 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 @@ -194,7 +196,8 @@ jobs: run: sh validate.sh $FLAGS -s cli-tests - name: Validate cli-suite - if: matrix.cli != 'false' + # the Windows@9.6.1 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