rust/ci/integration.sh

70 lines
1.9 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
set -ex
: ${INTEGRATION?"The INTEGRATION environment variable must be set."}
2018-05-18 07:38:30 +02:00
# FIXME: this means we can get a stale cargo-fmt from a previous run.
#
# `which rustfmt` fails if rustfmt is not found. Since we don't install
# `rustfmt` via `rustup`, this is the case unless we manually install it. Once
# that happens, `cargo install --force` will be called, which installs
# `rustfmt`, `cargo-fmt`, etc to `~/.cargo/bin`. This directory is cached by
# travis (see `.travis.yml`'s "cache" key), such that build-bots that arrive
# here after the first installation will find `rustfmt` and won't need to build
# it again.
#
2018-05-18 07:38:30 +02:00
#which cargo-fmt || cargo install --force
cargo install --force
echo "Integration tests for: ${INTEGRATION}"
2018-05-18 07:38:30 +02:00
cargo fmt -- --version
function check_fmt {
2018-05-18 07:38:30 +02:00
touch rustfmt.toml
2018-05-18 10:46:14 +02:00
cargo fmt --all -v 2>&1 | tee rustfmt_output
if [[ $? != 0 ]]; then
2018-05-15 19:55:56 +02:00
cat rustfmt_output
return 1
fi
cat rustfmt_output
! cat rustfmt_output | grep -q "internal error"
if [[ $? != 0 ]]; then
return 1
fi
! cat rustfmt_output | grep -q "warning"
if [[ $? != 0 ]]; then
return 1
fi
! cat rustfmt_output | grep -q "Warning"
if [[ $? != 0 ]]; then
return 1
fi
cargo test --all
if [[ $? != 0 ]]; then
return $?
fi
}
case ${INTEGRATION} in
cargo)
git clone --depth=1 https://github.com/rust-lang/${INTEGRATION}.git
cd ${INTEGRATION}
export CFG_DISABLE_CROSS_TESTS=1
2018-05-18 07:38:30 +02:00
check_fmt
cd -
;;
failure)
git clone --depth=1 https://github.com/rust-lang-nursery/${INTEGRATION}.git
cd ${INTEGRATION}/failure-1.X
2018-05-18 07:38:30 +02:00
check_fmt
cd -
;;
*)
git clone --depth=1 https://github.com/rust-lang-nursery/${INTEGRATION}.git
cd ${INTEGRATION}
2018-05-18 07:38:30 +02:00
check_fmt
cd -
;;
esac