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