We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e24b6a6 + 3226486 commit c0fdba6Copy full SHA for c0fdba6
1 file changed
.travis.yml
@@ -19,13 +19,11 @@ before_install:
19
- export PATH=$HOME/.local/bin:$PATH
20
- curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
21
22
-
23
-install:
24
- - echo "$(ghc --version) [$(ghc --print-project-git-commit-id 2> /dev/null || echo '?')]"
25
- - travis_wait stack --no-terminal -j1 --install-ghc build --only-dependencies
26
27
script:
28
- - travis_wait stack --no-terminal -j1 build
+ # Set a timeout of 35 minutes. We could use travis_wait here, but travis_wait
+ # doesn't produce any output until the command finishes, and also doesn't
+ # always show all of the command's output.
+ - timeout 35m stack --no-terminal -j1 --install-ghc build
29
30
notifications:
31
email: true
0 commit comments