Skip to content

Commit

Permalink
Attempt to speed up the build…
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkkrp committed Sep 23, 2017
1 parent 0716004 commit b2ed07d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ install:
script:
- cabal configure --enable-tests --enable-coverage -v2 -f dev
- travis_wait 60 cabal build
- cabal test --show-details=always --test-option=--qc-max-success=1000
- travis_wait 20 cabal test --show-details=always --test-option=--qc-max-success=1000
- cabal sdist
- cabal haddock | grep "100%" | wc -l | grep "11"

Expand Down
4 changes: 2 additions & 2 deletions megaparsec.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ library
, Text.Megaparsec.Pos
, Text.Megaparsec.Stream
if flag(dev)
ghc-options: -Wall -Werror
ghc-options: -O0 -Wall -Werror
else
ghc-options: -O2 -Wall
default-language: Haskell2010
Expand All @@ -70,7 +70,7 @@ test-suite tests
hs-source-dirs: tests
type: exitcode-stdio-1.0
if flag(dev)
ghc-options: -Wall -Werror
ghc-options: -O0 -Wall -Werror
else
ghc-options: -O2 -Wall
other-modules: Control.Applicative.CombinatorsSpec
Expand Down

0 comments on commit b2ed07d

Please sign in to comment.