From 169b9657e5c711e397856c149c4a0ea1d52c29c5 Mon Sep 17 00:00:00 2001 From: Sunshine Date: Wed, 18 Dec 2019 11:48:37 -0500 Subject: [PATCH] ignore failures for both beta and nightly in the pipeline --- .travis.yml | 19 ++++++++++--------- appveyor.yml | 1 + 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3d6df91..a1cc380 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,23 +4,24 @@ cache: cargo sudo: false os: - - linux - - osx + - linux + - osx rust: - - stable - - beta - - nightly + - stable + - beta + - nightly before_script: - - rustup component add rustfmt + - rustup component add rustfmt script: - - cargo build --all --locked --verbose - - cargo test --all --locked --verbose - - cargo fmt --all -- --check + - cargo build --all --locked --verbose + - cargo test --all --locked --verbose + - cargo fmt --all -- --check jobs: allow_failures: + - rust: beta - rust: nightly fast_finish: true diff --git a/appveyor.yml b/appveyor.yml index 2b618fa..adf84e2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -94,6 +94,7 @@ environment: # or test failure in the matching channels/targets from failing the entire build. matrix: allow_failures: + - channel: beta - channel: nightly # If you only care about stable channel build failures, uncomment the following line: