Skip to content

Commit

Permalink
Auto merge of #4720 - lzutao:int-errexit, r=phansch
Browse files Browse the repository at this point in the history
Do not early exit if cargo clippy returns non-zero status code

changelog: none
  • Loading branch information
bors committed Oct 27, 2019
2 parents 66df92a + a9f221a commit bcd8f32
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ cache:
directories:
- $HOME/.cargo
before_cache:
- find $HOME/.cargo/bin/ ! -type d -exec strip {} \;
- cargo install -Z install-upgrade cargo-cache --debug
- cargo cache --autoclean

Expand Down
15 changes: 10 additions & 5 deletions ci/integration-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,21 @@ cargo install --force --debug --path .
echo "Running integration test for crate ${INTEGRATION}"

git clone --depth=1 "https://github.com/${INTEGRATION}.git" checkout
cd checkout || exit 1
cd checkout

# run clippy on a project, try to be verbose and trigger as many warnings as possible for greater coverage
# run clippy on a project, try to be verbose and trigger as many warnings
# as possible for greater coverage
RUST_BACKTRACE=full \
cargo clippy \
--all-targets \
--all-features \
-- --cap-lints warn -W clippy::pedantic -W clippy::nursery \
2>& 1 \
| tee clippy_output
-- \
--cap-lints warn \
-W clippy::pedantic \
-W clippy::nursery \
> clippy_output 2>&1 || true

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 bcd8f32

Please sign in to comment.