]> git.lizzy.rs Git - rust.git/blob - .travis.yml
Rollup merge of #40423 - DirkyJerky:patch-2, r=BurntSushi
[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       os: osx
49       osx_image: xcode8.2
50       install: &osx_install_sccache >
51         travis_retry curl -o /usr/local/bin/sccache https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-02-25-sccache-x86_64-apple-darwin &&
52           chmod +x /usr/local/bin/sccache
53     - env: >
54         RUST_CHECK_TARGET=check
55         RUST_CONFIGURE_ARGS=--build=i686-apple-darwin
56         SRC=.
57       os: osx
58       osx_image: xcode8.2
59       install: *osx_install_sccache
60
61     - env: >
62         RUST_CHECK_TARGET=dist
63         RUST_CONFIGURE_ARGS="--build=i686-apple-darwin --enable-extended"
64         SRC=.
65         DEPLOY=1
66       os: osx
67       osx_image: xcode8.2
68       install: >
69         travis_retry curl -o /usr/local/bin/sccache https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-02-25-sccache-x86_64-apple-darwin &&
70           chmod +x /usr/local/bin/sccache &&
71           brew uninstall --ignore-dependencies openssl &&
72           brew install openssl --universal --without-test
73     - env: >
74         RUST_CHECK_TARGET=dist
75         RUST_CONFIGURE_ARGS="--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-extended"
76         SRC=.
77         DEPLOY=1
78       os: osx
79       osx_image: xcode8.2
80       install: *osx_install_sccache
81
82     # "alternate" deployments, these are "nightlies" but don't have assertions
83     # turned on, they're deployed to a different location primarily for projects
84     # which are stuck on nightly and don't want llvm assertions in the artifacts
85     # that they use.
86     - env: IMAGE=dist-x86-linux DEPLOY_ALT=1
87     - env: >
88         RUST_CHECK_TARGET=dist
89         RUST_CONFIGURE_ARGS="--enable-extended"
90         SRC=.
91         DEPLOY_ALT=1
92       os: osx
93       osx_image: xcode8.2
94       install: *osx_install_sccache
95
96 env:
97   global:
98     - SCCACHE_BUCKET=rust-lang-ci-sccache
99     - AWS_ACCESS_KEY_ID=AKIAIMX7VLAS3PZAVLUQ
100     # AWS_SECRET_ACCESS_KEY=...
101     - secure: "Pixhh0hXDqGCdOyLtGFjli3J2AtDWIpyb2btIrLe956nCBDRutRoMm6rv5DI9sFZN07Mms7VzNNvhc9wCW1y63JAm414d2Co7Ob8kWMZlz9l9t7ACHuktUiis8yr+S4Quq1Vqd6pqi7pf2J++UxC8R/uLeqVrubzr6+X7AbmEFE="
102
103 before_script:
104   - >
105       echo "#### Disk usage before running script:";
106       df -h;
107       du . | sort -nr | head -n100
108
109 script:
110   - >
111       if [ "$ALLOW_PR" = "" ] && [ "$TRAVIS_BRANCH" != "auto" ]; then
112           echo skipping, not a full build;
113       elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
114           travis_retry sh -c 'git submodule deinit -f . && git submodule update --init' &&
115           src/ci/run.sh;
116       else
117           travis_retry sh -c 'git submodule deinit -f . && git submodule update --init' &&
118           src/ci/docker/run.sh $IMAGE;
119       fi
120
121 after_success:
122   - >
123       echo "#### Build successful; Disk usage after running script:";
124       df -h;
125       du . | sort -nr | head -n100
126
127 after_failure:
128   - >
129       echo "#### Build failed; Disk usage after running script:";
130       df -h;
131       du . | sort -nr | head -n100
132   - cat obj/tmp/sccache.log
133
134 # Save tagged docker images we created and load them if they're available
135 before_cache:
136   - docker history -q rust-ci |
137     grep -v missing |
138     xargs docker save |
139     gzip > $HOME/docker/rust-ci.tar.gz
140 before_install:
141   - zcat $HOME/docker/rust-ci.tar.gz | docker load || true
142
143 notifications:
144   email: false
145
146 cache:
147   directories:
148     - $HOME/docker
149
150 before_deploy:
151   - mkdir -p deploy/$TRAVIS_COMMIT
152   - >
153       if [ "$TRAVIS_OS_NAME" == "osx" ]; then
154           rm -rf build/dist/doc &&
155           cp -r build/dist/* deploy/$TRAVIS_COMMIT;
156       else
157           rm -rf obj/build/dist/doc &&
158           cp -r obj/build/dist/* deploy/$TRAVIS_COMMIT;
159       fi
160
161 deploy:
162   - provider: s3
163     bucket: rust-lang-ci
164     skip_cleanup: true
165     local_dir: deploy
166     upload_dir: rustc-builds
167     acl: public_read
168     region: us-east-1
169     access_key_id: AKIAIPQVNYF2T3DTYIWQ
170     secret_access_key:
171       secure: "FBqDqOTeIPMu6v/WYPf4CFSlh9rLRZGKVtpLa5KkyuOhXRTrnEzBduEtS8/FMIxdQImvurhSvxWvqRybMOi4qoVfjMqqpHAI7uBbidbrvAcJoHNsx6BgUNVCIoH6a0UsAjTUtm6/YPIpzbHoLZXPL0GrHPMk6Mu04qVSmcYNWn4="
172     on:
173       branch: auto
174       condition: $DEPLOY = 1
175
176   # this is the same as the above deployment provider except that it uploads to
177   # a slightly different directory and has a different trigger
178   - provider: s3
179     bucket: rust-lang-ci
180     skip_cleanup: true
181     local_dir: deploy
182     upload_dir: rustc-builds-alt
183     acl: public_read
184     region: us-east-1
185     access_key_id: AKIAIPQVNYF2T3DTYIWQ
186     secret_access_key:
187       secure: "FBqDqOTeIPMu6v/WYPf4CFSlh9rLRZGKVtpLa5KkyuOhXRTrnEzBduEtS8/FMIxdQImvurhSvxWvqRybMOi4qoVfjMqqpHAI7uBbidbrvAcJoHNsx6BgUNVCIoH6a0UsAjTUtm6/YPIpzbHoLZXPL0GrHPMk6Mu04qVSmcYNWn4="
188     on:
189       branch: auto
190       condition: $DEPLOY_ALT = 1