]> git.lizzy.rs Git - rust.git/blob - .travis.yml
Stabilize btree_range, closes #27787
[rust.git] / .travis.yml
1 language: minimal
2 sudo: required
3 dist: trusty
4 services:
5   - docker
6
7 git:
8   depth: 1
9   submodules: false
10
11 matrix:
12   fast_finish: true
13   include:
14     # Linux builders, all docker images
15     - env: IMAGE=arm-android
16     - env: IMAGE=armhf-gnu
17     - env: IMAGE=cross DEPLOY=1
18     - env: IMAGE=dist-android DEPLOY=1
19     - env: IMAGE=dist-arm-linux DEPLOY=1
20     - env: IMAGE=dist-armv7-aarch64-linux DEPLOY=1
21     - env: IMAGE=dist-freebsd DEPLOY=1
22     - env: IMAGE=dist-i586-gnu-i686-musl DEPLOY=1
23     - env: IMAGE=dist-fuchsia DEPLOY=1
24     - env: IMAGE=dist-mips-linux DEPLOY=1
25     - env: IMAGE=dist-mips64-linux DEPLOY=1
26     - env: IMAGE=dist-powerpc-linux DEPLOY=1
27     - env: IMAGE=dist-powerpc64-linux DEPLOY=1
28     - env: IMAGE=dist-s390x-linux-netbsd DEPLOY=1
29     - env: IMAGE=dist-x86-linux DEPLOY=1
30     - env: IMAGE=dist-x86_64-musl DEPLOY=1
31     - env: IMAGE=emscripten
32     - env: IMAGE=i686-gnu
33     - env: IMAGE=i686-gnu-nopt
34     - env: IMAGE=x86_64-gnu
35     - env: IMAGE=x86_64-gnu-full-bootstrap
36     - env: IMAGE=x86_64-gnu-aux
37     - env: IMAGE=x86_64-gnu-debug
38     - env: IMAGE=x86_64-gnu-nopt
39     - env: IMAGE=x86_64-gnu-llvm-3.7 ALLOW_PR=1 RUST_BACKTRACE=1
40     - env: IMAGE=x86_64-gnu-distcheck
41     - env: IMAGE=x86_64-gnu-incremental
42
43     # OSX builders
44     - env: >
45         RUST_CHECK_TARGET=check
46         RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin
47         SRC=.
48         RUSTC_RETRY_LINKER_ON_SEGFAULT=1
49         SCCACHE_ERROR_LOG=/tmp/sccache.log
50         RUST_LOG=sccache=debug
51       os: osx
52       osx_image: xcode8.2
53       install: &osx_install_sccache >
54         travis_retry curl -o /usr/local/bin/sccache https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-03-16-sccache-x86_64-apple-darwin &&
55           chmod +x /usr/local/bin/sccache
56     - env: >
57         RUST_CHECK_TARGET=check
58         RUST_CONFIGURE_ARGS=--build=i686-apple-darwin
59         SRC=.
60         RUSTC_RETRY_LINKER_ON_SEGFAULT=1
61         SCCACHE_ERROR_LOG=/tmp/sccache.log
62         RUST_LOG=sccache=debug
63       os: osx
64       osx_image: xcode8.2
65       install: *osx_install_sccache
66
67     - env: >
68         RUST_CHECK_TARGET=dist
69         RUST_CONFIGURE_ARGS="--build=i686-apple-darwin --enable-extended"
70         SRC=.
71         DEPLOY=1
72         RUSTC_RETRY_LINKER_ON_SEGFAULT=1
73         SCCACHE_ERROR_LOG=/tmp/sccache.log
74         RUST_LOG=sccache=debug
75       os: osx
76       osx_image: xcode8.2
77       install: >
78         travis_retry curl -o /usr/local/bin/sccache https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-03-16-sccache-x86_64-apple-darwin &&
79           chmod +x /usr/local/bin/sccache
80     - env: >
81         RUST_CHECK_TARGET=dist
82         RUST_CONFIGURE_ARGS="--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-extended"
83         SRC=.
84         DEPLOY=1
85         RUSTC_RETRY_LINKER_ON_SEGFAULT=1
86         SCCACHE_ERROR_LOG=/tmp/sccache.log
87         RUST_LOG=sccache=debug
88       os: osx
89       osx_image: xcode8.2
90       install: *osx_install_sccache
91
92     # "alternate" deployments, these are "nightlies" but don't have assertions
93     # turned on, they're deployed to a different location primarily for projects
94     # which are stuck on nightly and don't want llvm assertions in the artifacts
95     # that they use.
96     - env: IMAGE=dist-x86-linux DEPLOY_ALT=1
97     - env: >
98         RUST_CHECK_TARGET=dist
99         RUST_CONFIGURE_ARGS="--enable-extended"
100         SRC=.
101         DEPLOY_ALT=1
102         RUSTC_RETRY_LINKER_ON_SEGFAULT=1
103         SCCACHE_ERROR_LOG=/tmp/sccache.log
104         RUST_LOG=sccache=debug
105       os: osx
106       osx_image: xcode8.2
107       install: *osx_install_sccache
108
109 env:
110   global:
111     - SCCACHE_BUCKET=rust-lang-ci-sccache
112     - AWS_ACCESS_KEY_ID=AKIAIMX7VLAS3PZAVLUQ
113     # AWS_SECRET_ACCESS_KEY=...
114     - secure: "Pixhh0hXDqGCdOyLtGFjli3J2AtDWIpyb2btIrLe956nCBDRutRoMm6rv5DI9sFZN07Mms7VzNNvhc9wCW1y63JAm414d2Co7Ob8kWMZlz9l9t7ACHuktUiis8yr+S4Quq1Vqd6pqi7pf2J++UxC8R/uLeqVrubzr6+X7AbmEFE="
115
116 before_script:
117   - >
118       echo "#### Disk usage before running script:";
119       df -h;
120       du . | sort -nr | head -n100
121
122 script:
123   - >
124       if [ "$ALLOW_PR" = "" ] && [ "$TRAVIS_BRANCH" != "auto" ]; then
125           echo skipping, not a full build;
126       elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
127           travis_retry sh -c 'git submodule deinit -f . && git submodule update --init' &&
128           src/ci/run.sh;
129       else
130           travis_retry sh -c 'git submodule deinit -f . && git submodule update --init' &&
131           src/ci/docker/run.sh $IMAGE;
132       fi
133
134 after_success:
135   - >
136       echo "#### Build successful; Disk usage after running script:";
137       df -h;
138       du . | sort -nr | head -n100
139
140 after_failure:
141   - >
142       echo "#### Build failed; Disk usage after running script:";
143       df -h;
144       du . | sort -nr | head -n100
145   - cat obj/tmp/sccache.log
146   - cat /tmp/sccache.log
147
148 # Save tagged docker images we created and load them if they're available
149 before_cache:
150   - docker history -q rust-ci |
151     grep -v missing |
152     xargs docker save |
153     gzip > $HOME/docker/rust-ci.tar.gz
154 before_install:
155   - zcat $HOME/docker/rust-ci.tar.gz | docker load || true
156
157 notifications:
158   email: false
159
160 cache:
161   directories:
162     - $HOME/docker
163
164 before_deploy:
165   - mkdir -p deploy/$TRAVIS_COMMIT
166   - >
167       if [ "$TRAVIS_OS_NAME" == "osx" ]; then
168           rm -rf build/dist/doc &&
169           cp -r build/dist/* deploy/$TRAVIS_COMMIT;
170       else
171           rm -rf obj/build/dist/doc &&
172           cp -r obj/build/dist/* deploy/$TRAVIS_COMMIT;
173       fi
174
175 deploy:
176   - provider: s3
177     bucket: rust-lang-ci
178     skip_cleanup: true
179     local_dir: deploy
180     upload_dir: rustc-builds
181     acl: public_read
182     region: us-east-1
183     access_key_id: AKIAIPQVNYF2T3DTYIWQ
184     secret_access_key:
185       secure: "FBqDqOTeIPMu6v/WYPf4CFSlh9rLRZGKVtpLa5KkyuOhXRTrnEzBduEtS8/FMIxdQImvurhSvxWvqRybMOi4qoVfjMqqpHAI7uBbidbrvAcJoHNsx6BgUNVCIoH6a0UsAjTUtm6/YPIpzbHoLZXPL0GrHPMk6Mu04qVSmcYNWn4="
186     on:
187       branch: auto
188       condition: $DEPLOY = 1
189
190   # this is the same as the above deployment provider except that it uploads to
191   # a slightly different directory and has a different trigger
192   - provider: s3
193     bucket: rust-lang-ci
194     skip_cleanup: true
195     local_dir: deploy
196     upload_dir: rustc-builds-alt
197     acl: public_read
198     region: us-east-1
199     access_key_id: AKIAIPQVNYF2T3DTYIWQ
200     secret_access_key:
201       secure: "FBqDqOTeIPMu6v/WYPf4CFSlh9rLRZGKVtpLa5KkyuOhXRTrnEzBduEtS8/FMIxdQImvurhSvxWvqRybMOi4qoVfjMqqpHAI7uBbidbrvAcJoHNsx6BgUNVCIoH6a0UsAjTUtm6/YPIpzbHoLZXPL0GrHPMk6Mu04qVSmcYNWn4="
202     on:
203       branch: auto
204       condition: $DEPLOY_ALT = 1