Skip to content

Commit 45d48b1

Browse files
authored
Merge pull request #3924 from commercialhaskell/travis-wait
Use travis_wait to avoid getting timed out
2 parents 27894ff + 385acb1 commit 45d48b1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,16 @@ before_install:
6868

6969
install:
7070
- if ! [ "$BUILD" = style ]; then echo "$(ghc --version) [$(ghc --print-project-git-commit-id 2> /dev/null || echo '?')]"; fi
71-
# Note: we build store by itself below due to high memory usage
71+
# Note: we build Cabal and store by themselves below due to high memory usage/time
7272
- |
7373
set -ex
7474
case "$BUILD" in
7575
style)
7676
./etc/scripts/get-hlint.sh
7777
;;
7878
stack)
79-
stack --no-terminal build store
79+
travis_wait stack --no-terminal build Cabal
80+
travis_wait stack --no-terminal build store
8081
stack --no-terminal test --only-dependencies
8182
;;
8283
cabal)

0 commit comments

Comments
 (0)