From 7f70040462b7a9c491d21e8911c65d41600dca79 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 14 Oct 2016 11:58:02 -0700 Subject: [PATCH] Update CI configs * Run on the master branch (to get previews) * Pass --target on AppVeyor (oops) * Use the current nightly for arm (I think that bug is fixed) --- library/compiler-builtins/.travis.yml | 7 ------- library/compiler-builtins/appveyor.yml | 13 ++++--------- 2 files changed, 4 insertions(+), 16 deletions(-) diff --git a/library/compiler-builtins/.travis.yml b/library/compiler-builtins/.travis.yml index 6e159cc211df..e53b678fb1ef 100644 --- a/library/compiler-builtins/.travis.yml +++ b/library/compiler-builtins/.travis.yml @@ -9,8 +9,6 @@ matrix: include: - env: TARGET=aarch64-unknown-linux-gnu - env: TARGET=arm-unknown-linux-gnueabi - # FIXME(rust-lang/rust#36518) - rust: nightly-2016-09-21 - env: TARGET=arm-unknown-linux-gnueabihf - env: TARGET=armv7-unknown-linux-gnueabihf - env: TARGET=i586-unknown-linux-gnu @@ -51,11 +49,6 @@ script: # Travis can't cache files that are not readable by "others" - chmod -R a+r $HOME/.cargo -branches: - only: - - auto - - try - notifications: email: on_success: never diff --git a/library/compiler-builtins/appveyor.yml b/library/compiler-builtins/appveyor.yml index 52afc97ef5e5..f27347c338de 100644 --- a/library/compiler-builtins/appveyor.yml +++ b/library/compiler-builtins/appveyor.yml @@ -14,12 +14,7 @@ install: build: false test_script: - - cargo build - - cargo build --release - - cargo test - - cargo test --release - -branches: - only: - - auto - - try + - cargo build --target %TARGET% + - cargo build --release --target %TARGET% + - cargo test --target %TARGET% + - cargo test --release --target %TARGET%