]> git.lizzy.rs Git - rust.git/blob - ci.sh
Update src/data_race.rs
[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 [ -z "${MIRI_TEST_TARGET+exists}" ]; then
27     # Only for host architecture: tests with MIR optimizations
28     MIRIFLAGS="-Z mir-opt-level=3" ./miri test --locked
29   fi
30
31   # On Windows, there is always "python", not "python3" or "python2".
32   if command -v python3 > /dev/null; then
33     PYTHON=python3
34   else
35     PYTHON=python
36   fi
37
38   # "miri test" has built the sysroot for us, now this should pass without
39   # any interactive questions.
40   ${PYTHON} test-cargo-miri/run-test.py
41   echo
42 }
43
44 # host
45 run_tests
46
47 case $HOST_TARGET in
48   x86_64-unknown-linux-gnu)
49     MIRI_TEST_TARGET=i686-unknown-linux-gnu run_tests
50     MIRI_TEST_TARGET=x86_64-apple-darwin run_tests
51     MIRI_TEST_TARGET=i686-pc-windows-msvc run_tests
52     ;;
53   x86_64-apple-darwin)
54     MIRI_TEST_TARGET=mips64-unknown-linux-gnuabi64 run_tests # big-endian architecture
55     MIRI_TEST_TARGET=x86_64-pc-windows-msvc run_tests
56     ;;
57   i686-pc-windows-msvc)
58     MIRI_TEST_TARGET=x86_64-unknown-linux-gnu run_tests
59     MIRI_TEST_TARGET=x86_64-apple-darwin run_tests
60     ;;
61   *)
62     echo "FATAL: unknown OS"
63     exit 1
64     ;;
65 esac