5ede8096c4
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.
12 lines
282 B
YAML
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
|