blob: afe9f534cebb9e1368f3ef642183f0c68629521d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
set -eo pipefail
export RUSTFLAGS=-Dwarnings
export DEFMT_LOG=trace,embassy_hal_internal=debug,embassy_net_esp_hosted=debug,cyw43=info,cyw43_pio=info,smoltcp=info
if [[ -z "${CARGO_TARGET_DIR}" ]]; then
export CARGO_TARGET_DIR=target_ci
fi
cargo embassy-devtool build --group nightly
|