diff options
Diffstat (limited to 'ci.sh')
| -rwxr-xr-x | ci.sh | 30 |
1 files changed, 30 insertions, 0 deletions
| @@ -0,0 +1,30 @@ | |||
| 1 | #!/bin/bash | ||
| 2 | |||
| 3 | set -euxo pipefail | ||
| 4 | |||
| 5 | # embassy std | ||
| 6 | (cd embassy-std-examples; cargo build) | ||
| 7 | |||
| 8 | # embassy embedded | ||
| 9 | (cd embassy; cargo build --target thumbv7em-none-eabi) | ||
| 10 | (cd embassy; cargo build --target thumbv7em-none-eabi --features log) | ||
| 11 | (cd embassy; cargo build --target thumbv7em-none-eabi --features defmt) | ||
| 12 | |||
| 13 | # embassy-nrf | ||
| 14 | |||
| 15 | (cd embassy-nrf-examples; cargo build --target thumbv7em-none-eabi --bins) | ||
| 16 | |||
| 17 | (cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52810) | ||
| 18 | #(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52811) # nrf52811-hal doesn't exist yet | ||
| 19 | (cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52832) | ||
| 20 | (cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52833) | ||
| 21 | (cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52840) | ||
| 22 | |||
| 23 | (cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52840,log) | ||
| 24 | (cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52840,defmt) | ||
| 25 | |||
| 26 | # embassy-stm32f4 | ||
| 27 | |||
| 28 | (cd embassy-stm32f4-examples; cargo build --target thumbv7em-none-eabi --bins) | ||
| 29 | (cd embassy-stm32f4; cargo build --target thumbv7em-none-eabi --features stm32f405) | ||
| 30 | (cd embassy-stm32f4; cargo build --target thumbv7em-none-eabi --features stm32f405,defmt) | ||
