2018-05-17 01:54:30 +08:00
|
|
|
set -x
|
2018-07-17 04:55:32 +08:00
|
|
|
rm ~/.cargo/bin/cargo-clippy
|
2018-05-30 17:20:34 +08:00
|
|
|
cargo install --force --path .
|
2018-05-16 15:10:35 +08:00
|
|
|
|
|
|
|
echo "Running integration test for crate ${INTEGRATION}"
|
|
|
|
|
2018-05-17 01:21:57 +08:00
|
|
|
git clone --depth=1 https://github.com/${INTEGRATION}.git checkout
|
|
|
|
cd checkout
|
2018-05-16 15:10:35 +08:00
|
|
|
|
|
|
|
function check() {
|
2018-05-18 04:06:25 +08:00
|
|
|
RUST_BACKTRACE=full cargo clippy --all &> clippy_output
|
2018-05-16 15:10:35 +08:00
|
|
|
cat clippy_output
|
2018-05-17 02:08:46 +08:00
|
|
|
! cat clippy_output | grep -q "internal compiler error"
|
2018-05-16 15:10:35 +08:00
|
|
|
if [[ $? != 0 ]]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
case ${INTEGRATION} in
|
|
|
|
rust-lang/cargo)
|
|
|
|
check
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
check
|
|
|
|
;;
|
|
|
|
esac
|