Skip to content

Commit

Permalink
build: avoid timing out in Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
tesuji committed Nov 5, 2019
1 parent 000c3ff commit a37bd8c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ci/integration-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ cd checkout

# run clippy on a project, try to be verbose and trigger as many warnings
# as possible for greater coverage
# NOTE: we use `tee` to print any warnings and errors to stdout
# to avoid build timeout in Travis
RUST_BACKTRACE=full \
cargo clippy \
--all-targets \
Expand All @@ -26,10 +28,9 @@ cargo clippy \
--cap-lints warn \
-W clippy::pedantic \
-W clippy::nursery \
> clippy_output 2>&1 || true
2>&1 | tee clippy_output

cargo uninstall clippy
cat clippy_output

if grep -q "internal compiler error\|query stack during panic\|E0463" clippy_output; then
exit 1
Expand Down

0 comments on commit a37bd8c

Please sign in to comment.