]> git.lizzy.rs Git - rust.git/blob - src/ci/run.sh
44eae0d1800472eb9eb16a2a979fbafaf8584a92
[rust.git] / src / ci / run.sh
1 #!/usr/bin/env bash
2 # Copyright 2016 The Rust Project Developers. See the COPYRIGHT
3 # file at the top-level directory of this distribution and at
4 # http://rust-lang.org/COPYRIGHT.
5 #
6 # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
7 # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
8 # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
9 # option. This file may not be copied, modified, or distributed
10 # except according to those terms.
11
12 set -e
13
14 if [ "$NO_CHANGE_USER" = "" ]; then
15   if [ "$LOCAL_USER_ID" != "" ]; then
16     useradd --shell /bin/bash -u $LOCAL_USER_ID -o -c "" -m user
17     export HOME=/home/user
18     unset LOCAL_USER_ID
19     exec su --preserve-environment -c "env PATH=$PATH \"$0\"" user
20   fi
21 fi
22
23 ci_dir=`cd $(dirname $0) && pwd`
24 source "$ci_dir/shared.sh"
25
26 if [ "$TRAVIS" == "true" ] && [ "$TRAVIS_BRANCH" != "auto" ]; then
27     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-quiet-tests"
28 else
29     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.print-step-timings"
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-openssl-static"
36
37 if [ "$DIST_SRC" = "" ]; then
38   RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-dist-src"
39 fi
40
41 # If we're deploying artifacts then we set the release channel, otherwise if
42 # we're not deploying then we want to be sure to enable all assertions because
43 # we'll be running tests
44 #
45 # FIXME: need a scheme for changing this `nightly` value to `beta` and `stable`
46 #        either automatically or manually.
47 export RUST_RELEASE_CHANNEL=nightly
48 if [ "$DEPLOY$DEPLOY_ALT" != "" ]; then
49   RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --release-channel=$RUST_RELEASE_CHANNEL"
50   RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-static-stdcpp"
51
52   if [ "$NO_LLVM_ASSERTIONS" = "1" ]; then
53     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-llvm-assertions"
54   elif [ "$DEPLOY_ALT" != "" ]; then
55     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-assertions"
56   fi
57 else
58   # We almost always want debug assertions enabled, but sometimes this takes too
59   # long for too little benefit, so we just turn them off.
60   if [ "$NO_DEBUG_ASSERTIONS" = "" ]; then
61     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-debug-assertions"
62   fi
63
64   # In general we always want to run tests with LLVM assertions enabled, but not
65   # all platforms currently support that, so we have an option to disable.
66   if [ "$NO_LLVM_ASSERTIONS" = "" ]; then
67     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-assertions"
68   fi
69 fi
70
71 # We've had problems in the past of shell scripts leaking fds into the sccache
72 # server (#48192) which causes Cargo to erroneously think that a build script
73 # hasn't finished yet. Try to solve that problem by starting a very long-lived
74 # sccache server at the start of the build, but no need to worry if this fails.
75 SCCACHE_IDLE_TIMEOUT=10800 sccache --start-server || true
76
77 if [ "$PARALLEL_CHECK" != "" ]; then
78   $SRC/configure --enable-experimental-parallel-queries
79   python2.7 ../x.py check
80   rm -f config.toml
81   rm -rf build
82 fi
83
84 travis_fold start configure
85 travis_time_start
86 $SRC/configure $RUST_CONFIGURE_ARGS
87 travis_fold end configure
88 travis_time_finish
89
90 travis_fold start make-prepare
91 travis_time_start
92 retry make prepare
93 travis_fold end make-prepare
94 travis_time_finish
95
96 travis_fold start check-bootstrap
97 travis_time_start
98 make check-bootstrap
99 travis_fold end check-bootstrap
100 travis_time_finish
101
102 # Display the CPU and memory information. This helps us know why the CI timing
103 # is fluctuating.
104 travis_fold start log-system-info
105 if [ "$TRAVIS_OS_NAME" = "osx" ]; then
106     system_profiler SPHardwareDataType || true
107     sysctl hw || true
108     ncpus=$(sysctl -n hw.ncpu)
109 else
110     cat /proc/cpuinfo || true
111     cat /proc/meminfo || true
112     ncpus=$(grep processor /proc/cpuinfo | wc -l)
113 fi
114 travis_fold end log-system-info
115
116 if [ ! -z "$SCRIPT" ]; then
117   sh -x -c "$SCRIPT"
118 else
119   do_make() {
120     travis_fold start "make-$1"
121     travis_time_start
122     echo "make -j $ncpus $1"
123     make -j $ncpus $1
124     local retval=$?
125     travis_fold end "make-$1"
126     travis_time_finish
127     return $retval
128   }
129
130   do_make tidy
131   do_make all
132   do_make "$RUST_CHECK_TARGET"
133 fi