From 3d3c3c60fc3b1aa1fb5642361cb7791bcfc88147 Mon Sep 17 00:00:00 2001 From: Philipp Matthias Schaefer Date: Sat, 10 Dec 2016 13:12:43 +0100 Subject: [PATCH] Allow failures of 1.7 builds Libraries we depend on need newer versions of Rust. The current stable release is 1.13. This also disables the CI for the platforms/architectures MIPS, ARM and Android. This cannot be helped as long as the test infrastructure only runs on 1.7. --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 3caaa91e9e..e08e05e4f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -69,6 +69,9 @@ matrix: sudo: true allow_failures: - rust: nightly + # We need to upgrade the lowest supported version. However, the build + # infrastructure for arm/mips/android is not ready yet. + - rust: 1.7.0 - env: TARGET=mips-unknown-linux-gnu DOCKER_IMAGE=posborne/rust-cross:mips - env: TARGET=mipsel-unknown-linux-gnu DOCKER_IMAGE=posborne/rust-cross:mips - env: TARGET=arm-linux-androideabi DOCKER_IMAGE=posborne/rust-cross:android