]> git.lizzy.rs Git - rust.git/blob - ci.sh
implement Windows SRWLock shims
[rust.git] / ci.sh
1 #!/bin/bash
2 set -euo pipefail
3
4 # Determine configuration
5 export RUST_TEST_NOCAPTURE=1
6 export RUST_BACKTRACE=1
7 export RUSTFLAGS="-D warnings"
8 export CARGO_INCREMENTAL=0
9 export CARGO_EXTRA_FLAGS="--all-features"
10
11 # Prepare
12 echo "Build and install miri"
13 ./miri build --all-targets --locked
14 ./miri install # implicitly locked
15 echo
16
17 # Test
18 function run_tests {
19   if [ -n "${MIRI_TEST_TARGET+exists}" ]; then
20     echo "Testing foreign architecture $MIRI_TEST_TARGET"
21   else
22     echo "Testing host architecture"
23   fi
24
25   ./miri test --locked
26   if ! [ -n "${MIRI_TEST_TARGET+exists}" ]; then
27     # Only for host architecture: tests with MIR optimizations
28     # FIXME:only testing level 1 because of <https://github.com/rust-lang/rust/issues/73223>.
29     MIRI_TEST_FLAGS="-Z mir-opt-level=1" ./miri test --locked
30   fi
31   # "miri test" has built the sysroot for us, now this should pass without
32   # any interactive questions.
33   ${PYTHON:-python3} test-cargo-miri/run-test.py
34
35   echo
36 }
37
38 # host
39 run_tests
40
41 if [ "${TRAVIS_OS_NAME:-}" == linux ]; then
42   MIRI_TEST_TARGET=i686-unknown-linux-gnu run_tests
43   MIRI_TEST_TARGET=x86_64-apple-darwin run_tests
44   MIRI_TEST_TARGET=i686-pc-windows-msvc run_tests
45 elif [ "${TRAVIS_OS_NAME:-}" == osx ]; then
46   MIRI_TEST_TARGET=i686-unknown-linux-gnu run_tests
47   MIRI_TEST_TARGET=x86_64-pc-windows-msvc run_tests
48   MIRI_TEST_TARGET=i686-pc-windows-gnu run_tests
49 elif [ "${CI_WINDOWS:-}" == True ]; then
50   MIRI_TEST_TARGET=x86_64-unknown-linux-gnu run_tests
51   MIRI_TEST_TARGET=x86_64-apple-darwin run_tests
52 else
53   echo "FATAL: unknown CI platform"
54   exit 1
55 fi