]> git.proxmox.com Git - rustc.git/blob - src/ci/run.sh
Merge tag 'debian/1.65.0+dfsg1-1_exp3' into debian/sid
[rustc.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
15 # Ensure that runners are able to execute git commands in the worktree,
16 # overriding the typical git protections. In our docker container we're running
17 # as root, while the user owning the checkout is not root.
18 # This is only necessary when we change the user, otherwise we should
19 # already be running with the right user.
20 #
21 # For NO_CHANGE_USER done in the small number of Dockerfiles affected.
22 echo -e '[safe]\n\tdirectory = *' > /home/user/gitconfig
23
24 exec su --preserve-environment -c "env PATH=$PATH \"$0\"" user
25 fi
26 fi
27
28 # only enable core dump on Linux
29 if [ -f /proc/sys/kernel/core_pattern ]; then
30 ulimit -c unlimited
31 fi
32
33 # There was a bad interaction between "old" 32-bit binaries on current 64-bit
34 # kernels with selinux enabled, where ASLR mmap would sometimes choose a low
35 # address and then block it for being below `vm.mmap_min_addr` -> `EACCES`.
36 # This is probably a kernel bug, but setting `ulimit -Hs` works around it.
37 # See also `dist-i686-linux` where this setting is enabled.
38 if [ "$SET_HARD_RLIMIT_STACK" = "1" ]; then
39 rlimit_stack=$(ulimit -Ss)
40 if [ "$rlimit_stack" != "" ]; then
41 ulimit -Hs "$rlimit_stack"
42 fi
43 fi
44
45 ci_dir=`cd $(dirname $0) && pwd`
46 source "$ci_dir/shared.sh"
47
48 if command -v python > /dev/null; then
49 PYTHON="python"
50 elif command -v python3 > /dev/null; then
51 PYTHON="python3"
52 else
53 PYTHON="python2"
54 fi
55
56 if ! isCI || isCiBranch auto || isCiBranch beta || isCiBranch try || isCiBranch try-perf; then
57 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.print-step-timings --enable-verbose-tests"
58 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.metrics"
59 fi
60
61 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-sccache"
62 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-manage-submodules"
63 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-locked-deps"
64 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-cargo-native-static"
65 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.codegen-units-std=1"
66
67 # Only produce xz tarballs on CI. gz tarballs will be generated by the release
68 # process by recompressing the existing xz ones. This decreases the storage
69 # space required for CI artifacts.
70 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --dist-compression-formats=xz"
71
72 if [ "$DIST_SRC" = "" ]; then
73 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-dist-src"
74 fi
75
76 # Always set the release channel for bootstrap; this is normally not important (i.e., only dist
77 # builds would seem to matter) but in practice bootstrap wants to know whether we're targeting
78 # master, beta, or stable with a build to determine whether to run some checks (notably toolstate).
79 export RUST_RELEASE_CHANNEL=$(releaseChannel)
80 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --release-channel=$RUST_RELEASE_CHANNEL"
81
82 if [ "$DEPLOY$DEPLOY_ALT" = "1" ]; then
83 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-static-stdcpp"
84 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.remap-debuginfo"
85 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --debuginfo-level-std=1"
86
87 if [ "$NO_LLVM_ASSERTIONS" = "1" ]; then
88 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-llvm-assertions"
89 elif [ "$DEPLOY_ALT" != "" ]; then
90 if [ "$NO_PARALLEL_COMPILER" = "" ]; then
91 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.parallel-compiler"
92 fi
93 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-assertions"
94 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.verify-llvm-ir"
95 fi
96 else
97 # We almost always want debug assertions enabled, but sometimes this takes too
98 # long for too little benefit, so we just turn them off.
99 if [ "$NO_DEBUG_ASSERTIONS" = "" ]; then
100 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-debug-assertions"
101 fi
102
103 # Same for overflow checks
104 if [ "$NO_OVERFLOW_CHECKS" = "" ]; then
105 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-overflow-checks"
106 fi
107
108 # In general we always want to run tests with LLVM assertions enabled, but not
109 # all platforms currently support that, so we have an option to disable.
110 if [ "$NO_LLVM_ASSERTIONS" = "" ]; then
111 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-assertions"
112 fi
113
114 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.verify-llvm-ir"
115
116 # We enable this for non-dist builders, since those aren't trying to produce
117 # fresh binaries. We currently don't entirely support distributing a fresh
118 # copy of the compiler (including llvm tools, etc.) if we haven't actually
119 # built LLVM, since not everything necessary is copied into the
120 # local-usage-only LLVM artifacts. If that changes, this could maybe be made
121 # true for all builds. In practice it's probably a good idea to keep building
122 # LLVM continuously on at least some builders to ensure it works, though.
123 # (And PGO is its own can of worms).
124 if [ "$NO_DOWNLOAD_CI_LLVM" = "" ]; then
125 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set llvm.download-ci-llvm=if-available"
126 fi
127 fi
128
129 if [ "$RUST_RELEASE_CHANNEL" = "nightly" ] || [ "$DIST_REQUIRE_ALL_TOOLS" = "" ]; then
130 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-missing-tools"
131 fi
132
133 export COMPILETEST_NEEDS_ALL_LLVM_COMPONENTS=1
134
135 # Print the date from the local machine and the date from an external source to
136 # check for clock drifts. An HTTP URL is used instead of HTTPS since on Azure
137 # Pipelines it happened that the certificates were marked as expired.
138 datecheck() {
139 echo "== clock drift check =="
140 echo -n " local time: "
141 date
142 echo -n " network time: "
143 curl -fs --head http://ci-caches.rust-lang.org | grep ^Date: \
144 | sed 's/Date: //g' || true
145 echo "== end clock drift check =="
146 }
147 datecheck
148 trap datecheck EXIT
149
150 # We've had problems in the past of shell scripts leaking fds into the sccache
151 # server (#48192) which causes Cargo to erroneously think that a build script
152 # hasn't finished yet. Try to solve that problem by starting a very long-lived
153 # sccache server at the start of the build, but no need to worry if this fails.
154 SCCACHE_IDLE_TIMEOUT=10800 sccache --start-server || true
155
156 if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
157 $SRC/configure --set rust.parallel-compiler
158 CARGO_INCREMENTAL=0 $PYTHON ../x.py check
159 rm -f config.toml
160 rm -rf build
161 fi
162
163 $SRC/configure $RUST_CONFIGURE_ARGS
164
165 retry make prepare
166
167 # Display the CPU and memory information. This helps us know why the CI timing
168 # is fluctuating.
169 if isMacOS; then
170 system_profiler SPHardwareDataType || true
171 sysctl hw || true
172 ncpus=$(sysctl -n hw.ncpu)
173 else
174 cat /proc/cpuinfo || true
175 cat /proc/meminfo || true
176 ncpus=$(grep processor /proc/cpuinfo | wc -l)
177 fi
178
179 if [ ! -z "$SCRIPT" ]; then
180 sh -x -c "$SCRIPT"
181 else
182 do_make() {
183 echo "make -j $ncpus $1"
184 make -j $ncpus $1
185 local retval=$?
186 return $retval
187 }
188
189 do_make "$RUST_CHECK_TARGET"
190 fi
191
192 sccache --show-stats || true