Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: use clippy's debug build in integration test #4702

Merged
merged 1 commit into from
Oct 20, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 19 additions & 16 deletions ci/integration-tests.sh
Original file line number Diff line number Diff line change
@@ -1,24 +1,27 @@
#!/usr/bin/env bash
set -x

if [[ -z "$INTEGRATION" ]]; then
exit 0
fi

rm ~/.cargo/bin/cargo-clippy
cargo install --force --path .
cargo install --force --debug --path .

echo "Running integration test for crate ${INTEGRATION}"

git clone --depth=1 https://github.com/${INTEGRATION}.git checkout
cd checkout
git clone --depth=1 "https://github.com/${INTEGRATION}.git" checkout
cd checkout || exit 1

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
cat clippy_output
! cat clippy_output | grep -q "internal compiler error\|query stack during panic\|E0463"
if [[ $? != 0 ]]; then
return 1
fi
}
RUST_BACKTRACE=full \
cargo clippy \
--all-targets \
--all-features \
-- --cap-lints warn -W clippy::pedantic -W clippy::nursery \
2>& 1 \
| tee clippy_output

case ${INTEGRATION} in
*)
check
;;
esac
if grep -q "internal compiler error\|query stack during panic\|E0463" clippy_output; then
exit 1
fi