2018-05-16 19:54:30 +02:00
|
|
|
set -x
|
2018-07-16 22:55:32 +02:00
|
|
|
rm ~/.cargo/bin/cargo-clippy
|
2018-05-30 11:20:34 +02:00
|
|
|
cargo install --force --path .
|
2018-05-16 09:10:35 +02:00
|
|
|
|
|
|
|
echo "Running integration test for crate ${INTEGRATION}"
|
|
|
|
|
2018-05-16 19:21:57 +02:00
|
|
|
git clone --depth=1 https://github.com/${INTEGRATION}.git checkout
|
|
|
|
cd checkout
|
2018-05-16 09:10:35 +02:00
|
|
|
|
|
|
|
function check() {
|
2018-07-28 12:14:35 +02:00
|
|
|
# run clippy on a project, try to be verbose and trigger as many warnings as possible for greater coverage
|
2018-09-03 10:52:42 +02:00
|
|
|
RUST_BACKTRACE=full cargo clippy --all-targets --all-features -- --cap-lints warn -W clippy::pedantic -W clippy::nursery &> clippy_output
|
2018-05-16 09:10:35 +02:00
|
|
|
cat clippy_output
|
2018-07-27 15:36:13 +02:00
|
|
|
! cat clippy_output | grep -q "internal compiler error\|query stack during panic"
|
2018-05-16 09:10:35 +02:00
|
|
|
if [[ $? != 0 ]]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
case ${INTEGRATION} in
|
|
|
|
rust-lang/cargo)
|
|
|
|
check
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
check
|
|
|
|
;;
|
|
|
|
esac
|