embassy/test-build.sh

26 lines
978 B
Bash
Raw Normal View History

2020-10-31 22:03:46 +00:00
#!/bin/bash
set -euxo pipefail
# examples
2020-12-01 16:52:06 +00:00
(cd examples; cargo build --target thumbv7em-none-eabi --bins)
2020-12-13 23:36:29 +00:00
# embassy std
(cd embassy; cargo build --features log,std)
# embassy embedded
2020-12-01 16:52:06 +00:00
(cd embassy; cargo build --target thumbv7em-none-eabi)
(cd embassy; cargo build --target thumbv7em-none-eabi --features log)
(cd embassy; cargo build --target thumbv7em-none-eabi --features defmt)
# embassy-nrf
2020-11-27 17:42:59 +00:00
(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52810)
2020-12-01 16:52:06 +00:00
#(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52811) # nrf52811-hal doesn't exist yet
(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52832)
(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52833)
(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52840)
2020-12-01 16:52:06 +00:00
(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52840,log)
(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52840,defmt)