]> git.proxmox.com Git - rustc.git/blob - src/ci/run.sh
Update upstream source from tag 'upstream/1.41.1+dfsg1'
[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 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 ci_dir=`cd $(dirname $0) && pwd`
24 source "$ci_dir/shared.sh"
25
26 if ! isCI || isCiBranch auto || isCiBranch beta; then
27 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.print-step-timings --enable-verbose-tests"
28 fi
29
30 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-sccache"
31 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-manage-submodules"
32 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-locked-deps"
33 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-cargo-native-static"
34 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.codegen-units-std=1"
35
36 if [ "$DIST_SRC" = "" ]; then
37 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-dist-src"
38 fi
39
40 # If we're deploying artifacts then we set the release channel, otherwise if
41 # we're not deploying then we want to be sure to enable all assertions because
42 # we'll be running tests
43 #
44 # FIXME: need a scheme for changing this `nightly` value to `beta` and `stable`
45 # either automatically or manually.
46 export RUST_RELEASE_CHANNEL=stable
47 if [ "$DEPLOY$DEPLOY_ALT" = "1" ]; then
48 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --release-channel=$RUST_RELEASE_CHANNEL"
49 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-static-stdcpp"
50 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.remap-debuginfo"
51 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --debuginfo-level-std=1"
52
53 if [ "$NO_LLVM_ASSERTIONS" = "1" ]; then
54 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-llvm-assertions"
55 elif [ "$DEPLOY_ALT" != "" ]; then
56 if [ "$NO_PARALLEL_COMPILER" = "" ]; then
57 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.parallel-compiler"
58 fi
59 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-assertions"
60 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.verify-llvm-ir"
61 fi
62 else
63 # We almost always want debug assertions enabled, but sometimes this takes too
64 # long for too little benefit, so we just turn them off.
65 if [ "$NO_DEBUG_ASSERTIONS" = "" ]; then
66 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-debug-assertions"
67 fi
68
69 # In general we always want to run tests with LLVM assertions enabled, but not
70 # all platforms currently support that, so we have an option to disable.
71 if [ "$NO_LLVM_ASSERTIONS" = "" ]; then
72 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-assertions"
73 fi
74
75 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.verify-llvm-ir"
76 fi
77
78 if [ "$RUST_RELEASE_CHANNEL" = "nightly" ] || [ "$DIST_REQUIRE_ALL_TOOLS" = "" ]; then
79 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-missing-tools"
80 fi
81
82 # Print the date from the local machine and the date from an external source to
83 # check for clock drifts. An HTTP URL is used instead of HTTPS since on Azure
84 # Pipelines it happened that the certificates were marked as expired.
85 datecheck() {
86 echo "== clock drift check =="
87 echo -n " local time: "
88 date
89 echo -n " network time: "
90 curl -fs --head http://detectportal.firefox.com/success.txt | grep ^Date: \
91 | sed 's/Date: //g' || true
92 echo "== end clock drift check =="
93 }
94 datecheck
95 trap datecheck EXIT
96
97 # We've had problems in the past of shell scripts leaking fds into the sccache
98 # server (#48192) which causes Cargo to erroneously think that a build script
99 # hasn't finished yet. Try to solve that problem by starting a very long-lived
100 # sccache server at the start of the build, but no need to worry if this fails.
101 SCCACHE_IDLE_TIMEOUT=10800 sccache --start-server || true
102
103 if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
104 $SRC/configure --enable-parallel-compiler
105 CARGO_INCREMENTAL=0 python2.7 ../x.py check
106 rm -f config.toml
107 rm -rf build
108 fi
109
110 $SRC/configure $RUST_CONFIGURE_ARGS
111
112 retry make prepare
113
114 make check-bootstrap
115
116 # Display the CPU and memory information. This helps us know why the CI timing
117 # is fluctuating.
118 if isMacOS; then
119 system_profiler SPHardwareDataType || true
120 sysctl hw || true
121 ncpus=$(sysctl -n hw.ncpu)
122 else
123 cat /proc/cpuinfo || true
124 cat /proc/meminfo || true
125 ncpus=$(grep processor /proc/cpuinfo | wc -l)
126 fi
127
128 if [ ! -z "$SCRIPT" ]; then
129 sh -x -c "$SCRIPT"
130 else
131 do_make() {
132 echo "make -j $ncpus $1"
133 make -j $ncpus $1
134 local retval=$?
135 return $retval
136 }
137
138 do_make "$RUST_CHECK_TARGET"
139 fi
140
141 sccache --show-stats || true