diff options
author | bors <bors@rust-lang.org> | 2017-11-29 12:17:45 +0000 |
---|---|---|
committer | bors <bors@rust-lang.org> | 2017-11-29 12:17:45 +0000 |
commit | 0a2e9ade83ff253bb489c63a95b1f499c5e0916f (patch) | |
tree | 6fe2c8003b84d6e710ad6d57b77427b66b9c4ad4 /.travis.yml | |
parent | Auto merge of #46360 - kennytm:workaround-travis-8821, r=kennytm (diff) | |
parent | Rollup merge of #46356 - daboross:patch-2, r=sfackler (diff) | |
download | grust-0a2e9ade83ff253bb489c63a95b1f499c5e0916f.tar.gz grust-0a2e9ade83ff253bb489c63a95b1f499c5e0916f.tar.bz2 grust-0a2e9ade83ff253bb489c63a95b1f499c5e0916f.tar.xz |
Auto merge of #46362 - kennytm:rollup, r=kennytm
Rollup of 10 pull requests
- Successful merges: #45969, #46077, #46219, #46287, #46293, #46322, #46323, #46330, #46354, #46356
- Failed merges:
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 36 |
1 files changed, 26 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml index 4ff548c4b8..320759b923 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -16,12 +16,11 @@ matrix: | |||
16 | if: type = pull_request OR branch = auto | 16 | if: type = pull_request OR branch = auto |
17 | 17 | ||
18 | - env: IMAGE=dist-x86_64-linux DEPLOY=1 | 18 | - env: IMAGE=dist-x86_64-linux DEPLOY=1 |
19 | if: branch = auto | 19 | if: branch = try OR branch = auto |
20 | 20 | ||
21 | # "alternate" deployments, these are "nightlies" but don't have assertions | 21 | # "alternate" deployments, these are "nightlies" but have LLVM assertions |
22 | # turned on, they're deployed to a different location primarily for projects | 22 | # turned on, they're deployed to a different location primarily for |
23 | # which are stuck on nightly and don't want llvm assertions in the artifacts | 23 | # additional testing. |
24 | # that they use. | ||
25 | - env: IMAGE=dist-x86_64-linux DEPLOY_ALT=1 | 24 | - env: IMAGE=dist-x86_64-linux DEPLOY_ALT=1 |
26 | if: branch = try OR branch = auto | 25 | if: branch = try OR branch = auto |
27 | 26 | ||
@@ -312,22 +311,39 @@ deploy: | |||
312 | branch: auto | 311 | branch: auto |
313 | condition: $DEPLOY = 1 | 312 | condition: $DEPLOY = 1 |
314 | 313 | ||
314 | # this is the same as the above deployment provider except that it uploads to | ||
315 | # a slightly different directory and has a different trigger | ||
315 | - provider: s3 | 316 | - provider: s3 |
316 | bucket: rust-lang-ci2 | 317 | bucket: rust-lang-ci2 |
317 | skip_cleanup: true | 318 | skip_cleanup: true |
318 | local_dir: deploy | 319 | local_dir: deploy |
319 | upload_dir: rustc-builds-try | 320 | upload_dir: rustc-builds-alt |
320 | acl: public_read | 321 | acl: public_read |
321 | region: us-west-1 | 322 | region: us-west-1 |
322 | access_key_id: AKIAJVBODR3IA4O72THQ | 323 | access_key_id: AKIAJVBODR3IA4O72THQ |
323 | secret_access_key: | 324 | secret_access_key: |
324 | secure: "kUGd3t7JcVWFESgIlzvsM8viZgCA9Encs3creW0xLJaLSeI1iVjlJK4h/2/nO6y224AFrh/GUfsNr4/4AlxPuYb8OU5oC5Lv+Ff2JiRDYtuNpyQSKAQp+bRYytWMtrmhja91h118Mbm90cUfcLPwkdiINgJNTXhPKg5Cqu3VYn0=" | 325 | secure: "kUGd3t7JcVWFESgIlzvsM8viZgCA9Encs3creW0xLJaLSeI1iVjlJK4h/2/nO6y224AFrh/GUfsNr4/4AlxPuYb8OU5oC5Lv+Ff2JiRDYtuNpyQSKAQp+bRYytWMtrmhja91h118Mbm90cUfcLPwkdiINgJNTXhPKg5Cqu3VYn0=" |
325 | on: | 326 | on: |
326 | branch: try | 327 | branch: auto |
327 | condition: $DEPLOY_ALT = 1 | 328 | condition: $DEPLOY_ALT = 1 |
328 | 329 | ||
329 | # this is the same as the above deployment provider except that it uploads to | 330 | # These two providers are the same as the two above, except deploy on the |
330 | # a slightly different directory and has a different trigger | 331 | # try branch. Travis does not appear to provide a way to use "or" in these |
332 | # conditions. | ||
333 | - provider: s3 | ||
334 | bucket: rust-lang-ci2 | ||
335 | skip_cleanup: true | ||
336 | local_dir: deploy | ||
337 | upload_dir: rustc-builds | ||
338 | acl: public_read | ||
339 | region: us-west-1 | ||
340 | access_key_id: AKIAJVBODR3IA4O72THQ | ||
341 | secret_access_key: | ||
342 | secure: "kUGd3t7JcVWFESgIlzvsM8viZgCA9Encs3creW0xLJaLSeI1iVjlJK4h/2/nO6y224AFrh/GUfsNr4/4AlxPuYb8OU5oC5Lv+Ff2JiRDYtuNpyQSKAQp+bRYytWMtrmhja91h118Mbm90cUfcLPwkdiINgJNTXhPKg5Cqu3VYn0=" | ||
343 | on: | ||
344 | branch: try | ||
345 | condition: $DEPLOY = 1 | ||
346 | |||
331 | - provider: s3 | 347 | - provider: s3 |
332 | bucket: rust-lang-ci2 | 348 | bucket: rust-lang-ci2 |
333 | skip_cleanup: true | 349 | skip_cleanup: true |
@@ -339,5 +355,5 @@ deploy: | |||
339 | secret_access_key: | 355 | secret_access_key: |
340 | secure: "kUGd3t7JcVWFESgIlzvsM8viZgCA9Encs3creW0xLJaLSeI1iVjlJK4h/2/nO6y224AFrh/GUfsNr4/4AlxPuYb8OU5oC5Lv+Ff2JiRDYtuNpyQSKAQp+bRYytWMtrmhja91h118Mbm90cUfcLPwkdiINgJNTXhPKg5Cqu3VYn0=" | 356 | secure: "kUGd3t7JcVWFESgIlzvsM8viZgCA9Encs3creW0xLJaLSeI1iVjlJK4h/2/nO6y224AFrh/GUfsNr4/4AlxPuYb8OU5oC5Lv+Ff2JiRDYtuNpyQSKAQp+bRYytWMtrmhja91h118Mbm90cUfcLPwkdiINgJNTXhPKg5Cqu3VYn0=" |
341 | on: | 357 | on: |
342 | branch: auto | 358 | branch: try |
343 | condition: $DEPLOY_ALT = 1 | 359 | condition: $DEPLOY_ALT = 1 |