diff options
-rw-r--r-- | .travis.yml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index 061b0fe..0ec4988 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,6 @@ language: rust -rust: - - stable - - beta - - nightly +rust: nightly addons: apt: @@ -16,7 +13,9 @@ addons: matrix: allow_failures: - - rust: nightly + - rust: + - stable + - beta include: - env: - TARGET=x86_64-unknown-linux-musl @@ -63,4 +62,4 @@ deploy: on: branch: master tags: true - condition: $TRAVIS_RUST_VERSION = stable && -n $TARGET + condition: $TRAVIS_RUST_VERSION = nightly && -n $TARGET |