Skip to content

Commit

Permalink
travis: Move from travis_wait to time-passes
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
alexcrichton committed Jul 2, 2014
1 parent 44ec28c commit 9af1b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ script: |
if [[ $LLVM_VERSION != '3.4' ]]; then exit 0; fi
fi &&
make tidy &&
travis_wait make -j4 rustc-stage1 &&
make -j4 rustc-stage1 RUSTFLAGS='-Z time-passes' &&
make check-stage1-std check-stage1-rpass check-stage1-cfail check-stage1-rfail check-stage1-doc
env:
Expand Down

0 comments on commit 9af1b0e

Please sign in to comment.