From e6336a4a90e29d35476e9fbdc759690c679dd69f Mon Sep 17 00:00:00 2001 From: Andrew Dirksen Date: Thu, 31 Oct 2019 16:22:27 -0700 Subject: [PATCH] Travis-ci was configured to build with no_std only when using rust nightly. This commit tells travis to attempt no_std builds for both nightly and stable. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 86d7a85..d856856 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,4 +6,4 @@ rust: script: - cargo build --all --release --verbose - cargo test --all --verbose - - if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then cargo build --no-default-features; fi + - cargo build --no-default-features