rust/travis.sh
2019-10-14 09:59:27 +02:00

34 lines
722 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
# Determine configuration
if [ "$TRAVIS_OS_NAME" == osx ]; then
FOREIGN_TARGET=i686-apple-darwin
else
FOREIGN_TARGET=i686-unknown-linux-gnu
fi
export CARGO_EXTRA_FLAGS="--all-features"
export RUSTC_EXTRA_FLAGS="-D warnings"
# Prepare
echo "Build and install miri"
./miri build --all-targets --locked
./miri install # implicitly locked
echo
# Test
function run_tests {
./miri test --locked
# "miri test" has built the sysroot for us, now this should pass without
# any interactive questions.
test-cargo-miri/run-test.py
}
echo "Test host architecture"
run_tests
echo
echo "Test foreign architecture ($FOREIGN_TARGET)"
MIRI_TEST_TARGET="$FOREIGN_TARGET" run_tests
echo