1
0
mirror of https://github.com/mre/mos6502.git synced 2024-09-28 10:55:33 +00:00
mre-mos6502/.travis.yml
Matthias Endler eedb4fc944 Travis tuning
2018-10-26 01:00:22 +02:00

27 lines
531 B
YAML

language: rust
cache: cargo
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
fast_finish: true
env:
- TARGET=aarch64-unknown-linux-gnu
- TARGET=arm-unknown-linux-gnueabi
- TARGET=armv7-unknown-linux-gnueabihf
- TARGET=thumbv7em-none-eabihf
install:
- cargo install xargo || true
- rustup component add rust-src
- rustup target add $TARGET
script:
- xargo build --no-default-features --verbose --target $TARGET
- xargo test --no-default-features --verbose --target $TARGET