We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e89c8ce commit 94de63aCopy full SHA for 94de63a
2 files changed
.cirrus.yml
@@ -20,7 +20,9 @@ task:
20
script:
21
- export CABAL_DIR=/tmp/.cabal
22
- cabal update
23
- - cabal test --test-show-details=direct
+ # For some reason the job fails with -O2 optimization level,
24
+ # probably because of lack of disk space.
25
+ - cabal test --test-show-details=direct --ghc-options='-O1'
26
27
task:
28
name: NetBSD
text.cabal
@@ -268,7 +268,7 @@ source-repository head
268
test-suite tests
269
type: exitcode-stdio-1.0
270
ghc-options:
271
- -Wall -threaded -rtsopts -with-rtsopts=-N
+ -Wall -threaded
272
273
hs-source-dirs: tests
274
main-is: Tests.hs
0 commit comments