Skip to content

Commit 55c3a3b

Browse files
committed
build: do not cache clippy binaries in integration tests
We rebuild clippy anyway.
1 parent e2104d1 commit 55c3a3b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ cache:
1313
- $HOME/.cargo
1414
before_cache:
1515
- cargo install -Z install-upgrade cargo-cache --debug
16-
- cargo cache --autoclean
1716
- find $HOME/.cargo/bin/ ! -type d -exec strip {} \;
17+
- cargo cache --autoclean
1818

1919
env:
2020
global:

ci/integration-tests.sh

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ cargo clippy \
2828
-W clippy::nursery \
2929
> clippy_output 2>&1 || true
3030

31+
cargo uninstall clippy
3132
cat clippy_output
3233

3334
if grep -q "internal compiler error\|query stack during panic\|E0463" clippy_output; then

0 commit comments

Comments
 (0)