Skip to content

Commit

Permalink
try to render the build log
Browse files Browse the repository at this point in the history
  • Loading branch information
rdeits committed Sep 8, 2018
1 parent 1fcb260 commit 2298050
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,12 @@ notifications:
email: false
branches:
only: master
before_script:
# Every 30 seconds, look for the build log file. If it exists, then
# start watching its contents and printing them to stdout as they
# change. This has two effects:
# 1. it avoids Travis timing out because the build outputs nothing
# 2. it makes it more obvious what part of the build, if any, gets stuck
- while sleep 30; do tail ~/build/JuliaPackaging/CMake.jl/deps/build.log -f ; done &
after_success:
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'

0 comments on commit 2298050

Please sign in to comment.