You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
384 B
21 lines
384 B
language: rust |
|
rust: |
|
- stable |
|
- nightly |
|
cache: cargo |
|
env: |
|
- MCU=stm32f042 |
|
- MCU=stm32f030 |
|
- MCU=stm32f030x6 |
|
- MCU=stm32f030x8 |
|
- MCU=stm32f030xc |
|
- MCU=stm32f070 |
|
- MCU=stm32f070x6 |
|
- MCU=stm32f070xb |
|
matrix: |
|
allow_failures: |
|
- rust: nightly |
|
fast_finish: true |
|
script: |
|
- rustup target add thumbv6m-none-eabi |
|
- cargo build --features=$MCU --examples --release
|
|
|