Travis: Set ulimit -n 4096 before build. This seems necessary on OSX.
This commit is contained in:
parent
95d3966601
commit
5ec7331349
1 changed files with 4 additions and 2 deletions
|
@ -93,7 +93,8 @@ install:
|
|||
- |
|
||||
case "$BUILD" in
|
||||
stack)
|
||||
stack --no-terminal --install-ghc $ARGS test --flag 'aeson:fast' --only-dependencies --fast
|
||||
ulimit -n 4096
|
||||
stack --no-terminal --install-ghc $ARGS test --flag 'aeson:fast' --only-dependencies --fast
|
||||
;;
|
||||
cabal)
|
||||
cabal --version
|
||||
|
@ -106,7 +107,8 @@ script:
|
|||
- |
|
||||
case "$BUILD" in
|
||||
stack)
|
||||
stack --no-terminal $ARGS test --flag 'aeson:fast' --haddock --no-haddock-deps --ghc-options="-O0 -Wall -fno-warn-unused-do-bind -Werror"
|
||||
ulimit -n 4096
|
||||
stack --no-terminal $ARGS test --flag 'aeson:fast' --haddock --no-haddock-deps --ghc-options="-O0 -Wall -fno-warn-unused-do-bind -Werror"
|
||||
;;
|
||||
cabal)
|
||||
cabal configure --enable-tests --enable-benchmarks -v2 -ffast --ghc-options="-O0 -Wall -fno-warn-unused-do-bind -Werror"
|
||||
|
|
Loading…
Add table
Reference in a new issue