File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -187,14 +187,17 @@ jobs:
187
187
run : sh validate.sh $FLAGS -s lib-tests
188
188
189
189
- name : Validate lib-suite
190
+ # the [email protected] problem is tracked at https://github.com/haskell/cabal/issues/8858
191
+ if : ${{ runner.os != 'Windows' }} || ${{ matrix.ghc != '9.6.1' }}
190
192
run : sh validate.sh $FLAGS -s lib-suite
191
193
192
194
- name : Validate cli-tests
193
195
if : matrix.cli != 'false'
194
196
run : sh validate.sh $FLAGS -s cli-tests
195
197
196
198
- name : Validate cli-suite
197
- if : matrix.cli != 'false'
199
+ # the [email protected] problem is tracked at https://github.com/haskell/cabal/issues/8858
200
+ if : ${{ runner.os != 'Windows' }} || ${{ matrix.ghc != '9.6.1' }} || {{ matrix.cli != 'false' }}
198
201
run : sh validate.sh $FLAGS -s cli-suite
199
202
200
203
# The job below is a copy-paste of validate with the necessary tweaks
You can’t perform that action at this time.
0 commit comments