build: do not cache clippy binaries in integration tests

We rebuild clippy anyway.
This commit is contained in:
Lzu Tao 2019-10-29 11:08:06 +07:00
parent e2104d1e2e
commit 55c3a3b282
2 changed files with 2 additions and 1 deletions

View File

@ -13,8 +13,8 @@ cache:
- $HOME/.cargo
before_cache:
- cargo install -Z install-upgrade cargo-cache --debug
- cargo cache --autoclean
- find $HOME/.cargo/bin/ ! -type d -exec strip {} \;
- cargo cache --autoclean
env:
global:

View File

@ -28,6 +28,7 @@ cargo clippy \
-W clippy::nursery \
> clippy_output 2>&1 || true
cargo uninstall clippy
cat clippy_output
if grep -q "internal compiler error\|query stack during panic\|E0463" clippy_output; then