bme680-rust/.travis.yml
Chris 5ede8096c4
Fix ci build fails
There was some problem with the std examples, so I changed ci to only check a seperate use of the bme680 in a new ci-folder to be no_std compatible.
2019-01-26 10:41:20 +01:00

12 lines
282 B
YAML

language: rust
rust:
- stable
- beta
- nightly
script:
- cargo build --verbose
- cargo test --verbose
- cd ci/no_std_test && rustup target add thumbv7m-none-eabi && cargo check --target thumbv7m-none-eabi # check for no_std
matrix:
allow_failures:
- rust: nightly