]> git.lizzy.rs Git - rust.git/blob - ci.sh
Auto merge of #2145 - saethlin:zero-size-creation, r=RalfJung
[rust.git] / ci.sh
1 #!/bin/bash
2 set -euo pipefail
3
4 # Determine configuration
5 export RUSTFLAGS="-D warnings"
6 export CARGO_INCREMENTAL=0
7 export CARGO_EXTRA_FLAGS="--all-features"
8
9 # Prepare
10 echo "Build and install miri"
11 ./miri build --all-targets --locked
12 ./miri install # implicitly locked
13 echo
14
15 # Test
16 function run_tests {
17   if [ -n "${MIRI_TEST_TARGET+exists}" ]; then
18     echo "Testing foreign architecture $MIRI_TEST_TARGET"
19   else
20     echo "Testing host architecture"
21   fi
22
23   ./miri test --locked
24   if [ -z "${MIRI_TEST_TARGET+exists}" ]; then
25     # Only for host architecture: tests with optimizations (`-O` is what cargo passes, but crank MIR
26     # optimizations up all the way).
27     # Optimizations change diagnostics (mostly backtraces), so we don't check them
28     #FIXME(#2155): we want to only run the pass and panic tests here, not the fail tests.
29     #MIRIFLAGS="-O -Zmir-opt-level=4" MIRI_SKIP_UI_CHECKS=1 ./miri test --locked
30     true
31   fi
32
33   # On Windows, there is always "python", not "python3" or "python2".
34   if command -v python3 > /dev/null; then
35     PYTHON=python3
36   else
37     PYTHON=python
38   fi
39
40   # "miri test" has built the sysroot for us, now this should pass without
41   # any interactive questions.
42   ${PYTHON} test-cargo-miri/run-test.py
43   echo
44 }
45
46 # host
47 run_tests
48
49 case $HOST_TARGET in
50   x86_64-unknown-linux-gnu)
51     MIRI_TEST_TARGET=i686-unknown-linux-gnu run_tests
52     MIRI_TEST_TARGET=aarch64-apple-darwin run_tests
53     MIRI_TEST_TARGET=i686-pc-windows-msvc run_tests
54     ;;
55   x86_64-apple-darwin)
56     MIRI_TEST_TARGET=mips64-unknown-linux-gnuabi64 run_tests # big-endian architecture
57     MIRI_TEST_TARGET=x86_64-pc-windows-msvc run_tests
58     ;;
59   i686-pc-windows-msvc)
60     MIRI_TEST_TARGET=x86_64-unknown-linux-gnu run_tests
61     ;;
62   *)
63     echo "FATAL: unknown OS"
64     exit 1
65     ;;
66 esac