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