pounder_test/.travis.yml

31 lines
574 B
YAML

language: rust
jobs:
include:
- rust: stable
env: FEATURES='' ARGS='--release'
- rust: stable
env: FEATURES='semihosting'
- rust: beta
env: FEATURES='' ARGS='--release'
allow_failures:
- rust: nightly
env: FEATURES='' ARGS='--release'
branches:
only:
- staging
- trying
- master
before_script:
- rustup target add thumbv7em-none-eabihf
# - rustup component add clippy
script:
# - cargo clippy
- "cargo build --target thumbv7em-none-eabihf --features \"$FEATURES\" $ARGS"
notifications:
email: false