summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorgnzlbg <gonzalobg88@gmail.com>2019-02-09 11:42:52 +0100
committergnzlbg <gonzalobg88@gmail.com>2019-02-09 13:59:29 +0100
commita7674aa4281d66bd9b59ec1f203c97a0a2b0e3f5 (patch)
tree9578f01ace34a35e7c4e66e4266955e4375bae1a /.travis.yml
parented160db4b3854eff8f42e0de96d286138c9443bc (diff)
downloadrust-libc-a7674aa4281d66bd9b59ec1f203c97a0a2b0e3f5.tar.gz
Do not allow rustup to fail
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml20
1 files changed, 19 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 4be7e2ec77..ac111e2ce6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -34,82 +34,98 @@ matrix:
script: sh ci/build.sh
stage: tools-and-build-and-tier1
rust: stable
+ install: true
- name: "Build Beta Rust"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
rust: beta
+ install: true
- name: "Build Nightly Rust"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
rust: nightly
+ install: true
- name: "Build Stable Rust"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
rust: stable
os: osx
osx_image: xcode10
+ install: true
- name: "Build Beta Rust"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
rust: beta
os: osx
osx_image: xcode10
+ install: true
- name: "Build Nightly Rust"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
rust: nightly
os: osx
osx_image: xcode10
+ install: true
- name: "Build Stable Rust 1.13.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
rust: 1.13.0
+ install: true
- name: "Build Stable Rust 1.19.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
rust: 1.19.0
+ install: true
- name: "Build Stable Rust 1.24.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
rust: 1.24.0
+ install: true
- name: "Build Stable Rust 1.25.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
rust: 1.25.0
+ install: true
- name: "Build Stable Rust 1.30.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
rust: 1.30.0
+ install: true
- name: "Build Stable Rust 1.13.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
rust: 1.13.0
os: osx
osx_image: xcode10
+ install: true
- name: "Build Stable Rust 1.19.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
rust: 1.19.0
os: osx
osx_image: xcode10
+ install: true
- name: "Build Stable Rust 1.24.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
rust: 1.24.0
os: osx
osx_image: xcode10
+ install: true
- name: "Build Stable Rust 1.25.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
rust: 1.25.0
os: osx
osx_image: xcode10
+ install: true
- name: "Build Stable Rust 1.30.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
rust: 1.30.0
os: osx
osx_image: xcode10
+ install: true
- env: TARGET=i686-apple-darwin
os: osx
osx_image: xcode10
@@ -119,9 +135,11 @@ matrix:
- env: TARGET=x86_64-apple-darwin
os: osx
osx_image: xcode10
+ install: true
stage: tools-and-build-and-tier1
- env: TARGET=x86_64-unknown-linux-gnu
stage: tools-and-build-and-tier1
+ install: true
# Tier 2 targets
- env: TARGET=aarch64-linux-android
@@ -174,7 +192,7 @@ matrix:
- env: TARGET=asmjs-unknown-emscripten
- env: TARGET=wasm32-unknown-emscripten
-install: rustup target add $TARGET || true
+install: rustup target add $TARGET
script:
- cargo generate-lockfile --manifest-path libc-test/Cargo.toml