Skip to content

Commit 9af1b0e

Browse files
committed
travis: Move from travis_wait to time-passes
It's looking like we're still timing out all over the place with travis_wait because the entire `make -j4 rustc-stage1` command is taking too long. Instead, achieve roughly the same idea by just having `-Z time-passes` printing information. We shouldn't have a pass that takes longer than 10 minutes in isolation.
1 parent 44ec28c commit 9af1b0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ script: |
4141
if [[ $LLVM_VERSION != '3.4' ]]; then exit 0; fi
4242
fi &&
4343
make tidy &&
44-
travis_wait make -j4 rustc-stage1 &&
44+
make -j4 rustc-stage1 RUSTFLAGS='-Z time-passes' &&
4545
make check-stage1-std check-stage1-rpass check-stage1-cfail check-stage1-rfail check-stage1-doc
4646
4747
env:

0 commit comments

Comments
 (0)