]> git.lizzy.rs Git - rust.git/blob - .travis.yml
Rollup merge of #45778 - Havvy:patch-1, r=steveklabnik
[rust.git] / .travis.yml
1 language: shell
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     # Images used in testing PR and try-build should be run first.
15     - env: IMAGE=x86_64-gnu-llvm-3.9 RUST_BACKTRACE=1
16       if: type = pull_request OR branch = auto
17
18     - env: IMAGE=dist-x86_64-linux DEPLOY=1
19       if: branch = try OR branch = auto
20
21     # "alternate" deployments, these are "nightlies" but don't have assertions
22     # turned on, they're deployed to a different location primarily for projects
23     # which are stuck on nightly and don't want llvm assertions in the artifacts
24     # that they use.
25     - env: IMAGE=dist-x86_64-linux DEPLOY_ALT=1
26       if: branch = auto
27
28     - env: >
29         RUST_CHECK_TARGET=dist
30         RUST_CONFIGURE_ARGS="--enable-extended --enable-profiler"
31         SRC=.
32         DEPLOY_ALT=1
33         RUSTC_RETRY_LINKER_ON_SEGFAULT=1
34         SCCACHE_ERROR_LOG=/tmp/sccache.log
35         MACOSX_DEPLOYMENT_TARGET=10.7
36         NO_LLVM_ASSERTIONS=1
37         NO_DEBUG_ASSERTIONS=1
38       os: osx
39       osx_image: xcode7.3
40       if: branch = auto
41
42     # macOS builders. These are placed near the beginning because they are very
43     # slow to run.
44
45     # OSX builders running tests, these run the full test suite.
46     #
47     # Note that the compiler is compiled to target 10.8 here because the Xcode
48     # version that we're using, 8.2, cannot compile LLVM for OSX 10.7.
49     - env: >
50         RUST_CHECK_TARGET=check
51         RUST_CONFIGURE_ARGS="--build=x86_64-apple-darwin --enable-sanitizers --enable-profiler"
52         SRC=.
53         RUSTC_RETRY_LINKER_ON_SEGFAULT=1
54         SCCACHE_ERROR_LOG=/tmp/sccache.log
55         MACOSX_DEPLOYMENT_TARGET=10.8
56         MACOSX_STD_DEPLOYMENT_TARGET=10.7
57         NO_LLVM_ASSERTIONS=1
58         NO_DEBUG_ASSERTIONS=1
59       os: osx
60       osx_image: xcode8.3
61       if: branch = auto
62
63     - env: >
64         RUST_CHECK_TARGET=check
65         RUST_CONFIGURE_ARGS=--build=i686-apple-darwin
66         SRC=.
67         RUSTC_RETRY_LINKER_ON_SEGFAULT=1
68         SCCACHE_ERROR_LOG=/tmp/sccache.log
69         MACOSX_DEPLOYMENT_TARGET=10.8
70         MACOSX_STD_DEPLOYMENT_TARGET=10.7
71         NO_LLVM_ASSERTIONS=1
72         NO_DEBUG_ASSERTIONS=1
73       os: osx
74       osx_image: xcode8.3
75       if: branch = auto
76
77     # OSX builders producing releases. These do not run the full test suite and
78     # just produce a bunch of artifacts.
79     #
80     # Note that these are running in the `xcode7` image instead of the
81     # `xcode8.2` image as above. That's because we want to build releases for
82     # OSX 10.7 and `xcode7` is the latest Xcode able to compile LLVM for 10.7.
83     - env: >
84         RUST_CHECK_TARGET=dist
85         RUST_CONFIGURE_ARGS="--build=i686-apple-darwin --enable-extended --enable-profiler"
86         SRC=.
87         DEPLOY=1
88         RUSTC_RETRY_LINKER_ON_SEGFAULT=1
89         SCCACHE_ERROR_LOG=/tmp/sccache.log
90         MACOSX_DEPLOYMENT_TARGET=10.7
91         NO_LLVM_ASSERTIONS=1
92         NO_DEBUG_ASSERTIONS=1
93       os: osx
94       osx_image: xcode7.3
95       if: branch = auto
96
97     - env: >
98         RUST_CHECK_TARGET=dist
99         RUST_CONFIGURE_ARGS="--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-extended --enable-sanitizers --enable-profiler"
100         SRC=.
101         DEPLOY=1
102         RUSTC_RETRY_LINKER_ON_SEGFAULT=1
103         SCCACHE_ERROR_LOG=/tmp/sccache.log
104         MACOSX_DEPLOYMENT_TARGET=10.7
105         NO_LLVM_ASSERTIONS=1
106         NO_DEBUG_ASSERTIONS=1
107       os: osx
108       osx_image: xcode7.3
109       if: branch = auto
110
111     # Linux builders, remaining docker images
112     - env: IMAGE=arm-android
113       if: branch = auto
114     - env: IMAGE=armhf-gnu
115       if: branch = auto
116     - env: IMAGE=cross DEPLOY=1
117       if: branch = auto
118     - env: IMAGE=cross2 DEPLOY=1
119       if: branch = auto
120     - env: IMAGE=dist-aarch64-linux DEPLOY=1
121       if: branch = auto
122     - env: IMAGE=dist-android DEPLOY=1
123       if: branch = auto
124     - env: IMAGE=dist-arm-linux DEPLOY=1
125       if: branch = auto
126     - env: IMAGE=dist-armhf-linux DEPLOY=1
127       if: branch = auto
128     - env: IMAGE=dist-armv7-linux DEPLOY=1
129       if: branch = auto
130     - env: IMAGE=dist-i586-gnu-i686-musl DEPLOY=1
131       if: branch = auto
132     - env: IMAGE=dist-i686-freebsd DEPLOY=1
133       if: branch = auto
134     - env: IMAGE=dist-i686-linux DEPLOY=1
135       if: branch = auto
136     - env: IMAGE=dist-mips-linux DEPLOY=1
137       if: branch = auto
138     - env: IMAGE=dist-mips64-linux DEPLOY=1
139       if: branch = auto
140     - env: IMAGE=dist-mips64el-linux DEPLOY=1
141       if: branch = auto
142     - env: IMAGE=dist-mipsel-linux DEPLOY=1
143       if: branch = auto
144     - env: IMAGE=dist-powerpc-linux DEPLOY=1
145       if: branch = auto
146     - env: IMAGE=dist-powerpc64-linux DEPLOY=1
147       if: branch = auto
148     - env: IMAGE=dist-powerpc64le-linux DEPLOY=1
149       if: branch = auto
150     - env: IMAGE=dist-s390x-linux DEPLOY=1
151       if: branch = auto
152     - env: IMAGE=dist-x86_64-freebsd DEPLOY=1
153       if: branch = auto
154     - env: IMAGE=dist-x86_64-musl DEPLOY=1
155       if: branch = auto
156     - env: IMAGE=dist-x86_64-netbsd DEPLOY=1
157       if: branch = auto
158     - env: IMAGE=asmjs
159       if: branch = auto
160     - env: IMAGE=i686-gnu
161       if: branch = auto
162     - env: IMAGE=i686-gnu-nopt
163       if: branch = auto
164     # - env: IMAGE=wasm32 issue 42646
165     #   if: branch = auto
166     - env: IMAGE=x86_64-gnu
167       if: branch = auto
168     - env: IMAGE=x86_64-gnu-full-bootstrap
169       if: branch = auto
170     - env: IMAGE=x86_64-gnu-aux
171       if: branch = auto
172     - env: IMAGE=x86_64-gnu-cargotest
173       if: branch = auto
174     - env: IMAGE=x86_64-gnu-debug
175       if: branch = auto
176     - env: IMAGE=x86_64-gnu-nopt
177       if: branch = auto
178     - env: IMAGE=x86_64-gnu-distcheck
179       if: branch = auto
180     - env: IMAGE=x86_64-gnu-incremental
181       if: branch = auto
182
183 env:
184   global:
185     - SCCACHE_BUCKET=rust-lang-ci-sccache2
186     - SCCACHE_REGION=us-west-1
187     - AWS_ACCESS_KEY_ID=AKIAJAMV3QAMMA6AXHFQ
188     # AWS_SECRET_ACCESS_KEY=...
189     - secure: "j96XxTVOSUf4s4r4htIxn/fvIa5DWbMgLqWl7r8z2QfgUwscmkMXAwXuFNc7s7bGTpV/+CgDiMFFM6BAFLGKutytIF6oA02s9b+usQYnM0th7YQ2AIgm9GtMTJCJp4AoyfFmh8F2faUICBZlfVLUJ34udHEe35vOklix+0k4WDo="
190
191 before_install:
192   - zcat $HOME/docker/rust-ci.tar.gz | docker load || true
193   - mkdir -p $HOME/rustsrc
194
195 install:
196   - case "$TRAVIS_OS_NAME" in
197         linux)
198           travis_retry curl -fo $HOME/stamp https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2017-03-17-stamp-x86_64-unknown-linux-musl &&
199             chmod +x $HOME/stamp &&
200             export PATH=$PATH:$HOME
201           ;;
202         osx)
203           if [[ "$RUST_CHECK_TARGET" == dist ]]; then
204             travis_retry brew update &&
205             travis_retry brew install xz;
206           fi &&
207           travis_retry curl -fo /usr/local/bin/sccache https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2017-05-12-sccache-x86_64-apple-darwin &&
208             chmod +x /usr/local/bin/sccache &&
209           travis_retry curl -fo /usr/local/bin/stamp https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2017-03-17-stamp-x86_64-apple-darwin &&
210             chmod +x /usr/local/bin/stamp
211           ;;
212     esac
213
214 before_script:
215   - >
216       echo "#### Disk usage before running script:";
217       df -h;
218       du . | sort -nr | head -n100
219   - >
220       RUN_SCRIPT="src/ci/init_repo.sh . $HOME/rustsrc";
221       if [ "$TRAVIS_OS_NAME" = "osx" ]; then
222           export RUN_SCRIPT="$RUN_SCRIPT && src/ci/run.sh";
223       else
224           export RUN_SCRIPT="$RUN_SCRIPT && src/ci/docker/run.sh $IMAGE";
225       fi
226
227 # Log time information from this machine and an external machine for insight into possible
228 # clock drift. Timezones don't matter since relative deltas give all the necessary info.
229 script:
230   - >
231       date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true)
232   - stamp sh -x -c "$RUN_SCRIPT"
233   - >
234       date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true)
235
236 after_success:
237   - >
238       echo "#### Build successful; Disk usage after running script:";
239       df -h;
240       du . | sort -nr | head -n100
241
242 after_failure:
243   - >
244       echo "#### Build failed; Disk usage after running script:";
245       df -h;
246       du . | sort -nr | head -n100
247
248   # One of these is the linux sccache log, one is the OSX sccache log. Instead
249   # of worrying about what system we are just cat both. One of these commands
250   # will fail but that's ok, they'll both get executed.
251   - cat obj/tmp/sccache.log
252   - cat /tmp/sccache.log
253
254   # Random attempt at debugging currently. Just poking around in here to see if
255   # anything shows up.
256   - ls $HOME/Library/Logs/DiagnosticReports/
257
258   # attempt to debug anything killed by the oom killer on linux, just to see if
259   # it happened
260   - dmesg | grep -i kill
261
262 # Save tagged docker images we created and load them if they're available
263 # Travis saves caches whether the build failed or not, nuke rustsrc if
264 # the failure was while updating it (as it may be in a bad state)
265 # https://github.com/travis-ci/travis-ci/issues/4472
266 before_cache:
267   - docker history -q rust-ci |
268     grep -v missing |
269     xargs docker save |
270     gzip > $HOME/docker/rust-ci.tar.gz
271
272 notifications:
273   email: false
274
275 cache:
276   directories:
277     - $HOME/docker
278
279 before_deploy:
280   - mkdir -p deploy/$TRAVIS_COMMIT
281   - >
282       if [ "$TRAVIS_OS_NAME" == "osx" ]; then
283           rm -rf build/dist/doc &&
284           cp -r build/dist/* deploy/$TRAVIS_COMMIT;
285       else
286           rm -rf obj/build/dist/doc &&
287           cp -r obj/build/dist/* deploy/$TRAVIS_COMMIT;
288       fi
289
290 deploy:
291   - provider: s3
292     bucket: rust-lang-ci2
293     skip_cleanup: true
294     local_dir: deploy
295     upload_dir: rustc-builds
296     acl: public_read
297     region: us-west-1
298     access_key_id: AKIAJVBODR3IA4O72THQ
299     secret_access_key:
300       secure: "kUGd3t7JcVWFESgIlzvsM8viZgCA9Encs3creW0xLJaLSeI1iVjlJK4h/2/nO6y224AFrh/GUfsNr4/4AlxPuYb8OU5oC5Lv+Ff2JiRDYtuNpyQSKAQp+bRYytWMtrmhja91h118Mbm90cUfcLPwkdiINgJNTXhPKg5Cqu3VYn0="
301     on:
302       branch: auto
303       condition: $DEPLOY = 1
304
305   - provider: s3
306     bucket: rust-lang-ci2
307     skip_cleanup: true
308     local_dir: deploy
309     upload_dir: rustc-builds-try
310     acl: public_read
311     region: us-west-1
312     access_key_id: AKIAJVBODR3IA4O72THQ
313     secret_access_key:
314       secure: "kUGd3t7JcVWFESgIlzvsM8viZgCA9Encs3creW0xLJaLSeI1iVjlJK4h/2/nO6y224AFrh/GUfsNr4/4AlxPuYb8OU5oC5Lv+Ff2JiRDYtuNpyQSKAQp+bRYytWMtrmhja91h118Mbm90cUfcLPwkdiINgJNTXhPKg5Cqu3VYn0="
315     on:
316       branch: try
317       condition: $DEPLOY = 1
318
319   # this is the same as the above deployment provider except that it uploads to
320   # a slightly different directory and has a different trigger
321   - provider: s3
322     bucket: rust-lang-ci2
323     skip_cleanup: true
324     local_dir: deploy
325     upload_dir: rustc-builds-alt
326     acl: public_read
327     region: us-west-1
328     access_key_id: AKIAJVBODR3IA4O72THQ
329     secret_access_key:
330       secure: "kUGd3t7JcVWFESgIlzvsM8viZgCA9Encs3creW0xLJaLSeI1iVjlJK4h/2/nO6y224AFrh/GUfsNr4/4AlxPuYb8OU5oC5Lv+Ff2JiRDYtuNpyQSKAQp+bRYytWMtrmhja91h118Mbm90cUfcLPwkdiINgJNTXhPKg5Cqu3VYn0="
331     on:
332       branch: auto
333       condition: $DEPLOY_ALT = 1