rust/ci/integration-tests.sh

27 lines
493 B
Bash
Raw Normal View History

set -x
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}"
git clone --depth=1 https://github.com/${INTEGRATION}.git checkout
cd checkout
2018-05-16 09:10:35 +02:00
function check() {
2018-05-17 22:06:25 +02:00
RUST_BACKTRACE=full cargo clippy --all &> clippy_output
2018-05-16 09:10:35 +02:00
cat clippy_output
! cat clippy_output | grep -q "internal compiler error"
2018-05-16 09:10:35 +02:00
if [[ $? != 0 ]]; then
return 1
fi
}
case ${INTEGRATION} in
rust-lang/cargo)
check
;;
*)
check
;;
esac