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