]> git.lizzy.rs Git - rust.git/blob - src/ci/run.sh
Fix invalid associated type rendering in rustdoc
[rust.git] / src / ci / run.sh
1 #!/bin/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 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-sccache"
27 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-manage-submodules"
28 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-locked-deps"
29 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-cargo-openssl-static"
30 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-clean-rebuild"
31
32 if [ "$DIST_SRC" = "" ]; then
33   RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-dist-src"
34 fi
35
36 # If we're deploying artifacts then we set the release channel, otherwise if
37 # we're not deploying then we want to be sure to enable all assertions becauase
38 # we'll be running tests
39 #
40 # FIXME: need a scheme for changing this `nightly` value to `beta` and `stable`
41 #        either automatically or manually.
42 if [ "$DEPLOY$DEPLOY_ALT" != "" ]; then
43   RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --release-channel=nightly"
44   RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-static-stdcpp"
45   RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-save-analysis"
46
47   if [ "$NO_LLVM_ASSERTIONS" = "1" ]; then
48     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-llvm-assertions"
49   elif [ "$DEPLOY_ALT" != "" ]; then
50     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-llvm-assertions"
51   fi
52 else
53   RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-debug-assertions"
54
55   # In general we always want to run tests with LLVM assertions enabled, but not
56   # all platforms currently support that, so we have an option to disable.
57   if [ "$NO_LLVM_ASSERTIONS" = "" ]; then
58     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-assertions"
59   fi
60 fi
61
62 $SRC/configure $RUST_CONFIGURE_ARGS
63 retry make prepare
64
65 if [ "$TRAVIS_OS_NAME" = "osx" ]; then
66     ncpus=$(sysctl -n hw.ncpu)
67 else
68     ncpus=$(grep processor /proc/cpuinfo | wc -l)
69 fi
70
71 set -x
72
73 if [ ! -z "$SCRIPT" ]; then
74   sh -x -c "$SCRIPT"
75 else
76   make -j $ncpus tidy
77   make -j $ncpus
78   make $RUST_CHECK_TARGET -j $ncpus
79 fi