-
Notifications
You must be signed in to change notification settings - Fork 696
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
have to disable lib-suite, cli-suite
because of #8739 on all platforms!
- Loading branch information
1 parent
590c129
commit 809287b
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 [email protected] 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 [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') | ||
# 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 | ||
|