Skip to content

Commit 809287b

Browse files
committed
have to disable lib-suite, cli-suite
because of #8739 on all platforms!
1 parent 590c129 commit 809287b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/validate.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ jobs:
154154
# https://github.com/haskell/actions/issues/7#issuecomment-745697160
155155
#
156156
# See https://github.com/haskell/cabal/pull/8739 for why Windows is excluded
157+
# But currently this #8739 hits us everwhere
157158
- if: ${{ runner.os != 'Windows' }}
158159
uses: actions/cache@v3
159160
id: cache-haskell
@@ -269,7 +270,8 @@ jobs:
269270

270271
- name: Validate lib-suite
271272
# the [email protected] problem is tracked at https://github.com/haskell/cabal/issues/8858
272-
if: (runner.os != 'Windows') || (matrix.ghc != '9.6.1')
273+
# but curently can't run it at all because of https://github.com/haskell/cabal/pull/8739
274+
if: false # (runner.os != 'Windows') || (matrix.ghc != '9.6.1')
273275
run: sh validate.sh $FLAGS -s lib-suite
274276

275277
- name: Validate cli-tests
@@ -278,7 +280,8 @@ jobs:
278280

279281
- name: Validate cli-suite
280282
# the [email protected] problem is tracked at https://github.com/haskell/cabal/issues/8858
281-
if: ((runner.os != 'Windows') || (matrix.ghc != '9.6.1')) && (matrix.cli != 'false')
283+
# but curently can't run it at all because of https://github.com/haskell/cabal/pull/8739
284+
if: false # ((runner.os != 'Windows') || (matrix.ghc != '9.6.1')) && (matrix.cli != 'false')
282285
run: sh validate.sh $FLAGS -s cli-suite
283286

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

0 commit comments

Comments
 (0)