1
0
mirror of https://github.com/mre/mos6502.git synced 2024-06-05 10:29:31 +00:00
mre-mos6502/.travis.yml
2018-11-04 22:46:47 +01:00

27 lines
424 B
YAML

language: rust
cache: cargo
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
fast_finish: true
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
- |
if [[ "$TRAVIS_RUST_VERSION" != "stable" ]]; then
cd no-std-example
cargo build
fi