File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1414before_cache :
1515 - cargo install -Z install-upgrade cargo-cache --debug
1616 - cargo cache --autoclean
17+ - find $HOME/.cargo/bin/ ! -type d -exec strip {} \;
1718
1819env :
1920 global :
Original file line number Diff line number Diff line change @@ -14,16 +14,21 @@ cargo install --force --debug --path .
1414echo " Running integration test for crate ${INTEGRATION} "
1515
1616git clone --depth=1 " https://github.com/${INTEGRATION} .git" checkout
17- cd checkout || exit 1
17+ cd checkout
1818
19- # run clippy on a project, try to be verbose and trigger as many warnings as possible for greater coverage
19+ # run clippy on a project, try to be verbose and trigger as many warnings
20+ # as possible for greater coverage
2021RUST_BACKTRACE=full \
2122cargo clippy \
2223 --all-targets \
2324 --all-features \
24- -- --cap-lints warn -W clippy::pedantic -W clippy::nursery \
25- 2>& 1 \
26- | tee clippy_output
25+ -- \
26+ --cap-lints warn \
27+ -W clippy::pedantic \
28+ -W clippy::nursery \
29+ > clippy_output 2>&1 || true
30+
31+ cat clippy_output
2732
2833if grep -q " internal compiler error\|query stack during panic\|E0463" clippy_output; then
2934 exit 1
You can’t perform that action at this time.
0 commit comments