1
0
mirror of https://github.com/mre/mos6502.git synced 2024-06-05 10:29:31 +00:00

Don't build no_std on stable

This commit is contained in:
Matthias Endler 2018-11-04 22:07:51 +01:00
parent 11e7dd609a
commit 3a8a911748

View File

@ -15,7 +15,12 @@ install:
- rustup component add rust-src
- rustup target add thumbv7m-none-eabi
# TODO: Remove check as soon as Rust 2018 Edition is stable
script:
- cargo build
- cargo test
- cd no-std-example && cargo build
- |
if [[ "$TRAVIS_RUST_VERSION" != "stable" ]]; then
cd no-std-example
cargo build
fi