mirror of
https://github.com/commercialhaskell/stackage-server.git
synced 2026-01-11 19:58:28 +01:00
Avoid OOM on haskell-src-exts
This commit is contained in:
parent
9fe4618044
commit
d364a5d0a7
@ -28,7 +28,11 @@ before_install:
|
|||||||
# This line does all of the work: installs GHC if necessary, build the library,
|
# This line does all of the work: installs GHC if necessary, build the library,
|
||||||
# executables, and test suites, and runs the test suites. --no-terminal works
|
# executables, and test suites, and runs the test suites. --no-terminal works
|
||||||
# around some quirks in Travis's terminal implementation.
|
# around some quirks in Travis's terminal implementation.
|
||||||
script: stack $ARGS --no-terminal --install-ghc test --haddock # --pedantic
|
script:
|
||||||
|
# Avoid running out of memory on Travis
|
||||||
|
- stack $ARGS --no-terminal --install-ghc build --haddock haskell-src-exts
|
||||||
|
|
||||||
|
- stack $ARGS --no-terminal --install-ghc test --haddock # --pedantic
|
||||||
|
|
||||||
# Caching so the next build will be fast too.
|
# Caching so the next build will be fast too.
|
||||||
cache:
|
cache:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user