mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-26 00:32:33 +00:00
15 lines
621 B
Bash
15 lines
621 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -euxo pipefail
|
||
|
|
||
|
cargo build --target thumbv7em-none-eabihf -p embassy-examples --bins
|
||
|
cargo build --target thumbv7em-none-eabihf -p embassy
|
||
|
|
||
|
# Build with all feature combinations
|
||
|
cd embassy-nrf
|
||
|
cargo build --target thumbv7em-none-eabihf -p embassy-nrf --features 52810
|
||
|
#cargo build --target thumbv7em-none-eabihf -p embassy-nrf --features 52811 # nrf52811-hal doesn't exist yet
|
||
|
cargo build --target thumbv7em-none-eabihf -p embassy-nrf --features 52832
|
||
|
cargo build --target thumbv7em-none-eabihf -p embassy-nrf --features 52833
|
||
|
cargo build --target thumbv7em-none-eabihf -p embassy-nrf --features 52840
|