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