rust/ci/integration-tests.sh

25 lines
680 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() {
# run clippy on a project, try to be verbose and trigger as many warnings as possible for greater coverage
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-12-14 21:47:02 +01:00
! cat clippy_output | grep -q "internal compiler error\|query stack during panic\|E0463"
2018-05-16 09:10:35 +02:00
if [[ $? != 0 ]]; then
return 1
fi
}
case ${INTEGRATION} in
*)
check
;;
esac