2019-10-19 09:44:29 +00:00
|
|
|
#!/usr/bin/env bash
|
2018-05-16 17:54:30 +00:00
|
|
|
set -x
|
2019-10-19 09:44:29 +00:00
|
|
|
|
|
|
|
if [[ -z "$INTEGRATION" ]]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2019-10-18 04:10:15 +00:00
|
|
|
CARGO_TARGET_DIR=$(pwd)/target/
|
|
|
|
export CARGO_TARGET_DIR
|
|
|
|
|
2018-07-16 20:55:32 +00:00
|
|
|
rm ~/.cargo/bin/cargo-clippy
|
2019-10-19 09:44:29 +00:00
|
|
|
cargo install --force --debug --path .
|
2018-05-16 07:10:35 +00:00
|
|
|
|
|
|
|
echo "Running integration test for crate ${INTEGRATION}"
|
|
|
|
|
2019-10-19 09:44:29 +00:00
|
|
|
git clone --depth=1 "https://github.com/${INTEGRATION}.git" checkout
|
|
|
|
cd checkout || exit 1
|
2018-05-16 07:10:35 +00:00
|
|
|
|
2018-07-28 10:14:35 +00:00
|
|
|
# run clippy on a project, try to be verbose and trigger as many warnings as possible for greater coverage
|
2019-10-19 09:44:29 +00:00
|
|
|
RUST_BACKTRACE=full \
|
|
|
|
cargo clippy \
|
|
|
|
--all-targets \
|
|
|
|
--all-features \
|
|
|
|
-- --cap-lints warn -W clippy::pedantic -W clippy::nursery \
|
|
|
|
2>& 1 \
|
|
|
|
| tee clippy_output
|
2018-05-16 07:10:35 +00:00
|
|
|
|
2019-10-19 09:44:29 +00:00
|
|
|
if grep -q "internal compiler error\|query stack during panic\|E0463" clippy_output; then
|
|
|
|
exit 1
|
|
|
|
fi
|