]> git.lizzy.rs Git - rust.git/commit
travis: Prevent timeouts with travis_wait
authorAlex Crichton <alex@alexcrichton.com>
Wed, 4 Jun 2014 19:00:42 +0000 (12:00 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Thu, 5 Jun 2014 00:16:37 +0000 (17:16 -0700)
commitbc1789711666f4d29b04ae6aa7da3670e2ddf83e
treec4552d727df088d1db823f4d215e1e8b561f6a5c
parenta6401b52263336c22879d4ffae3eded97949ee7b
travis: Prevent timeouts with travis_wait

The most frequent failure for our travis builds is running into the timeout
limits when building the compiler itself. Building librustc takes a very long
amount of time, often hitting the 10 minutes with no output threshold that
travis imposes on us.

This commit switches the relevant `make` step to being wrapped in the
`travis_wait` command [1]. This command will print something once a minute so as
to not time out a build.

This will hopefully enable us to have fewer flaky builds on travis!

[1]: http://docs.travis-ci.com/user/build-timeouts/
.travis.yml