.travis.yml 241 B

123456789101112131415
  1. language: rust
  2. rust:
  3. - stable
  4. - nightly
  5. cache: cargo
  6. env:
  7. - MCU=stm32f103
  8. - MCU=stm32f100
  9. matrix:
  10. allow_failures:
  11. - rust: nightly
  12. fast_finish: true
  13. script:
  14. - rustup target add thumbv7m-none-eabi
  15. - cargo build --features=$MCU