mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
24 lines
680 B
Bash
Executable file
24 lines
680 B
Bash
Executable file
set -x
|
|
rm ~/.cargo/bin/cargo-clippy
|
|
cargo install --force --path .
|
|
|
|
echo "Running integration test for crate ${INTEGRATION}"
|
|
|
|
git clone --depth=1 https://github.com/${INTEGRATION}.git checkout
|
|
cd checkout
|
|
|
|
function check() {
|
|
# 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 &> clippy_output
|
|
cat clippy_output
|
|
! cat clippy_output | grep -q "internal compiler error\|query stack during panic\|E0463"
|
|
if [[ $? != 0 ]]; then
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
case ${INTEGRATION} in
|
|
*)
|
|
check
|
|
;;
|
|
esac
|