From ce67ae454cfcb7fe9cc8e297d4027d42ffa43750 Mon Sep 17 00:00:00 2001 From: gnzlbg Date: Tue, 22 Jan 2019 17:57:17 +0100 Subject: [PATCH] Enable passing allow_failure builds (#644) --- .travis.yml | 11 ++--------- ci/run.sh | 15 ++++++++------- 2 files changed, 10 insertions(+), 16 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0f77119e4ffd3..df49db3791f3f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -98,15 +98,8 @@ matrix: - shellcheck --version - shellcheck ci/*.sh allow_failures: - # FIXME https://github.com/rust-lang/libc/issues/1170 - - name: "arm-linux-androideabi - no assert_instr" - - name: "aarch64-linux-android - no assert_instr" - # clippy changes enough from time to time that it breaks relatively - # regularly - - name: "clippy" - # qemu seems to intermittently segfault... - - name: "powerpc-unknown-linux-gnu - no assert_instr" - + - name: "clippy" + install: travis_retry rustup target add $TARGET script: - cargo generate-lockfile diff --git a/ci/run.sh b/ci/run.sh index d12662ed83f94..a60ff6e5a3732 100755 --- a/ci/run.sh +++ b/ci/run.sh @@ -65,13 +65,14 @@ cargo_test() { cmd="$cmd -p core_arch -p std_detect -p stdsimd_examples" fi cmd="$cmd -- $2" - if [ "$NORUN" != "1" ] - then - if [ "$TARGET" != "wasm32-unknown-unknown" ] - then - cmd="$cmd --quiet" - fi - fi + # Un-commenting this disables the test output and shows only a summary: + #if [ "$NORUN" != "1" ] + #then + # if [ "$TARGET" != "wasm32-unknown-unknown" ] + # then + # cmd="$cmd --quiet" + # fi + #fi if [ "$CROSS" = "1" ] then cmd="$cmd --emit=asm"