@@ -13,16 +13,16 @@ matrix:
13
13
include :
14
14
# Images used in testing PR and try-build should be run first.
15
15
- env : IMAGE=x86_64-gnu-llvm-3.9 RUST_BACKTRACE=1
16
- if : type = pull_request OR branch = auto
16
+ if : branch = auto
17
17
18
18
- env : IMAGE=dist-x86_64-linux DEPLOY=1
19
- if : branch = try OR branch = auto
19
+ if : branch = auto
20
20
21
21
# "alternate" deployments, these are "nightlies" but have LLVM assertions
22
22
# turned on, they're deployed to a different location primarily for
23
23
# additional testing.
24
24
- env : IMAGE=dist-x86_64-linux DEPLOY_ALT=1
25
- if : branch = try OR branch = auto
25
+ if : branch = auto
26
26
27
27
- env : >
28
28
RUST_CHECK_TARGET=dist
@@ -36,7 +36,7 @@ matrix:
36
36
NO_DEBUG_ASSERTIONS=1
37
37
os: osx
38
38
osx_image: xcode7.3
39
- if: branch = auto
39
+ if: branch = try
40
40
41
41
# macOS builders. These are placed near the beginning because they are very
42
42
# slow to run.
@@ -105,7 +105,7 @@ matrix:
105
105
NO_DEBUG_ASSERTIONS=1
106
106
os: osx
107
107
osx_image: xcode7.3
108
- if: branch = auto
108
+ if: branch = try
109
109
110
110
# Linux builders, remaining docker images
111
111
- env : IMAGE=arm-android
@@ -248,7 +248,7 @@ before_script:
248
248
script :
249
249
- >
250
250
date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true)
251
- - stamp sh -x -c "$RUN_SCRIPT"
251
+ - stamp sh -x -c "$RUN_SCRIPT" || true
252
252
- >
253
253
date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true)
254
254
@@ -258,12 +258,6 @@ after_success:
258
258
df -h;
259
259
du . | sort -nr | head -n100
260
260
261
- after_failure :
262
- - >
263
- echo "#### Build failed; Disk usage after running script:";
264
- df -h;
265
- du . | sort -nr | head -n100
266
-
267
261
# One of these is the linux sccache log, one is the OSX sccache log. Instead
268
262
# of worrying about what system we are just cat both. One of these commands
269
263
# will fail but that's ok, they'll both get executed.
0 commit comments