Skip to content

Commit

Permalink
Attempt to speed-up building on Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkkrp committed Nov 24, 2017
1 parent d8e60ae commit 568192b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions zip.cabal
Expand Up @@ -51,7 +51,7 @@ library
, Codec.Archive.Zip.Type
other-modules: Codec.Archive.Zip.Internal
if flag(dev)
ghc-options: -Wall -Werror
ghc-options: -O0 -Wall -Werror
else
ghc-options: -O2 -Wall
default-language: Haskell2010
Expand All @@ -60,10 +60,6 @@ test-suite tests
main-is: Main.hs
hs-source-dirs: tests
type: exitcode-stdio-1.0
if flag(dev)
ghc-options: -Wall -Werror
else
ghc-options: -O2 -Wall
build-depends: base >= 4.8 && < 5.0
, bytestring >= 0.9 && < 0.11
, conduit >= 1.2.8 && < 2.0
Expand All @@ -78,6 +74,10 @@ test-suite tests
, time >= 1.4 && < 1.9
, transformers >= 0.4 && < 0.6
, zip
if flag(dev)
ghc-options: -O0 -Wall -Werror
else
ghc-options: -O2 -Wall
default-language: Haskell2010

source-repository head
Expand Down

0 comments on commit 568192b

Please sign in to comment.