From 809287b4341df7f8538f6c49cb28d45090c7480d Mon Sep 17 00:00:00 2001 From: Artem Pelenitsyn Date: Thu, 23 Mar 2023 02:54:18 +0100 Subject: [PATCH] have to disable lib-suite, cli-suite because of https://github.com/haskell/cabal/pull/8739 on all platforms! --- .github/workflows/validate.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index b4ce57dbe58..35c2e43b6ac 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -154,6 +154,7 @@ jobs: # https://github.com/haskell/actions/issues/7#issuecomment-745697160 # # See https://github.com/haskell/cabal/pull/8739 for why Windows is excluded + # But currently this #8739 hits us everwhere - if: ${{ runner.os != 'Windows' }} uses: actions/cache@v3 id: cache-haskell @@ -269,7 +270,8 @@ jobs: - 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') + # but curently can't run it at all because of https://github.com/haskell/cabal/pull/8739 + if: false # (runner.os != 'Windows') || (matrix.ghc != '9.6.1') run: sh validate.sh $FLAGS -s lib-suite - name: Validate cli-tests @@ -278,7 +280,8 @@ jobs: - name: Validate cli-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')) && (matrix.cli != 'false') + # but curently can't run it at all because of https://github.com/haskell/cabal/pull/8739 + if: false # ((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