2023-03-27 01:33:20 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -euxo pipefail
|
|
|
|
|
2023-04-26 14:20:49 +00:00
|
|
|
export DEFMT_LOG=trace
|
|
|
|
|
2023-03-27 01:33:20 +00:00
|
|
|
# build examples
|
|
|
|
#==================
|
|
|
|
|
|
|
|
(cd examples/rpi-pico-w; WIFI_NETWORK=foo WIFI_PASSWORD=bar cargo build --release)
|
|
|
|
|
|
|
|
|
|
|
|
# build with log/defmt combinations
|
|
|
|
#=====================================
|
|
|
|
|
|
|
|
cargo build --target thumbv6m-none-eabi --features ''
|
|
|
|
cargo build --target thumbv6m-none-eabi --features 'log'
|
|
|
|
cargo build --target thumbv6m-none-eabi --features 'defmt'
|
|
|
|
cargo build --target thumbv6m-none-eabi --features 'log,firmware-logs'
|
|
|
|
cargo build --target thumbv6m-none-eabi --features 'defmt,firmware-logs'
|