We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27894ff commit 385acb1Copy full SHA for 385acb1
.travis.yml
@@ -68,15 +68,16 @@ before_install:
68
69
install:
70
- 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
+ # Note: we build Cabal and store by themselves below due to high memory usage/time
72
- |
73
set -ex
74
case "$BUILD" in
75
style)
76
./etc/scripts/get-hlint.sh
77
;;
78
stack)
79
- stack --no-terminal build store
+ travis_wait stack --no-terminal build Cabal
80
+ travis_wait stack --no-terminal build store
81
stack --no-terminal test --only-dependencies
82
83
cabal)
0 commit comments