pounder_test/.travis.yml

22 lines
431 B
YAML
Raw Normal View History

2019-03-29 16:52:38 +08:00
language: rust
2019-03-29 17:12:07 +08:00
2019-03-29 16:52:38 +08:00
matrix:
include:
- rust: nightly
env: FEATURES='' ARGS='--release'
- rust: nightly
env: FEATURES='semihosting'
- rust: nightly
env: FEATURES='bkpt'
2019-03-29 17:12:07 +08:00
2019-04-30 01:59:17 +08:00
before_script:
2019-03-29 17:12:07 +08:00
- rustup target add thumbv7em-none-eabihf
2019-04-30 02:01:39 +08:00
# - rustup component add clippy
2019-04-30 01:59:17 +08:00
script:
2019-04-30 02:01:39 +08:00
# - cargo clippy
2019-04-30 01:59:17 +08:00
- "cargo build --target thumbv7em-none-eabihf --features \"$FEATURES\" $ARGS"
2019-03-29 17:12:07 +08:00
notifications:
email: false