]> git.lizzy.rs Git - rust.git/blob - src/ci/run.sh
Use better error message for hard errors in CTFE
[rust.git] / src / ci / run.sh
1 #!/usr/bin/env bash
2
3 set -e
4
5 if [ -n "$CI_JOB_NAME" ]; then
6   echo "[CI_JOB_NAME=$CI_JOB_NAME]"
7 fi
8
9 if [ "$NO_CHANGE_USER" = "" ]; then
10   if [ "$LOCAL_USER_ID" != "" ]; then
11     useradd --shell /bin/bash -u $LOCAL_USER_ID -o -c "" -m user
12     export HOME=/home/user
13     unset LOCAL_USER_ID
14     exec su --preserve-environment -c "env PATH=$PATH \"$0\"" user
15   fi
16 fi
17
18 # only enable core dump on Linux
19 if [ -f /proc/sys/kernel/core_pattern ]; then
20   ulimit -c unlimited
21 fi
22
23 # There was a bad interaction between "old" 32-bit binaries on current 64-bit
24 # kernels with selinux enabled, where ASLR mmap would sometimes choose a low
25 # address and then block it for being below `vm.mmap_min_addr` -> `EACCES`.
26 # This is probably a kernel bug, but setting `ulimit -Hs` works around it.
27 # See also `dist-i686-linux` where this setting is enabled.
28 if [ "$SET_HARD_RLIMIT_STACK" = "1" ]; then
29   rlimit_stack=$(ulimit -Ss)
30   if [ "$rlimit_stack" != "" ]; then
31     ulimit -Hs "$rlimit_stack"
32   fi
33 fi
34
35 ci_dir=`cd $(dirname $0) && pwd`
36 source "$ci_dir/shared.sh"
37
38 if command -v python > /dev/null; then
39     PYTHON="python"
40 elif command -v python3 > /dev/null; then
41     PYTHON="python3"
42 else
43     PYTHON="python2"
44 fi
45
46 if ! isCI || isCiBranch auto || isCiBranch beta; then
47     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.print-step-timings --enable-verbose-tests"
48 fi
49
50 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-sccache"
51 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-manage-submodules"
52 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-locked-deps"
53 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-cargo-native-static"
54 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.codegen-units-std=1"
55
56 # Only produce xz tarballs on CI. gz tarballs will be generated by the release
57 # process by recompressing the existing xz ones. This decreases the storage
58 # space required for CI artifacts.
59 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --dist-compression-formats=xz"
60
61 if [ "$DIST_SRC" = "" ]; then
62   RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-dist-src"
63 fi
64
65 # Always set the release channel for bootstrap; this is normally not important (i.e., only dist
66 # builds would seem to matter) but in practice bootstrap wants to know whether we're targeting
67 # master, beta, or stable with a build to determine whether to run some checks (notably toolstate).
68 if [[ -z "${RUST_CI_OVERRIDE_RELEASE_CHANNEL+x}" ]]; then
69     export RUST_RELEASE_CHANNEL="$(cat "${ci_dir}/channel")"
70 else
71     export RUST_RELEASE_CHANNEL="${RUST_CI_OVERRIDE_RELEASE_CHANNEL}"
72 fi
73 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --release-channel=$RUST_RELEASE_CHANNEL"
74
75 if [ "$DEPLOY$DEPLOY_ALT" = "1" ]; then
76   RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-static-stdcpp"
77   RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.remap-debuginfo"
78   RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --debuginfo-level-std=1"
79
80   if [ "$NO_LLVM_ASSERTIONS" = "1" ]; then
81     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-llvm-assertions"
82   elif [ "$DEPLOY_ALT" != "" ]; then
83     if [ "$NO_PARALLEL_COMPILER" = "" ]; then
84       RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.parallel-compiler"
85     fi
86     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-assertions"
87     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.verify-llvm-ir"
88   fi
89 else
90   # We almost always want debug assertions enabled, but sometimes this takes too
91   # long for too little benefit, so we just turn them off.
92   if [ "$NO_DEBUG_ASSERTIONS" = "" ]; then
93     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-debug-assertions"
94   fi
95
96   # In general we always want to run tests with LLVM assertions enabled, but not
97   # all platforms currently support that, so we have an option to disable.
98   if [ "$NO_LLVM_ASSERTIONS" = "" ]; then
99     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-assertions"
100   fi
101
102   RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.verify-llvm-ir"
103 fi
104
105 if [ "$RUST_RELEASE_CHANNEL" = "nightly" ] || [ "$DIST_REQUIRE_ALL_TOOLS" = "" ]; then
106     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-missing-tools"
107 fi
108
109 export COMPILETEST_NEEDS_ALL_LLVM_COMPONENTS=1
110
111 # Print the date from the local machine and the date from an external source to
112 # check for clock drifts. An HTTP URL is used instead of HTTPS since on Azure
113 # Pipelines it happened that the certificates were marked as expired.
114 datecheck() {
115   echo "== clock drift check =="
116   echo -n "  local time: "
117   date
118   echo -n "  network time: "
119   curl -fs --head http://detectportal.firefox.com/success.txt | grep ^Date: \
120       | sed 's/Date: //g' || true
121   echo "== end clock drift check =="
122 }
123 datecheck
124 trap datecheck EXIT
125
126 # We've had problems in the past of shell scripts leaking fds into the sccache
127 # server (#48192) which causes Cargo to erroneously think that a build script
128 # hasn't finished yet. Try to solve that problem by starting a very long-lived
129 # sccache server at the start of the build, but no need to worry if this fails.
130 SCCACHE_IDLE_TIMEOUT=10800 sccache --start-server || true
131
132 if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
133   $SRC/configure --enable-parallel-compiler
134   CARGO_INCREMENTAL=0 $PYTHON ../x.py check
135   rm -f config.toml
136   rm -rf build
137 fi
138
139 $SRC/configure $RUST_CONFIGURE_ARGS
140
141 retry make prepare
142
143 make check-bootstrap
144
145 # Display the CPU and memory information. This helps us know why the CI timing
146 # is fluctuating.
147 if isMacOS; then
148     system_profiler SPHardwareDataType || true
149     sysctl hw || true
150     ncpus=$(sysctl -n hw.ncpu)
151 else
152     cat /proc/cpuinfo || true
153     cat /proc/meminfo || true
154     ncpus=$(grep processor /proc/cpuinfo | wc -l)
155 fi
156
157 if [ ! -z "$SCRIPT" ]; then
158   sh -x -c "$SCRIPT"
159 else
160   do_make() {
161     echo "make -j $ncpus $1"
162     make -j $ncpus $1
163     local retval=$?
164     return $retval
165   }
166
167   do_make "$RUST_CHECK_TARGET"
168 fi
169
170 sccache --show-stats || true