mirror of
https://github.com/embassy-rs/embassy.git
synced 2025-09-26 20:00:27 +00:00
13 lines
330 B
Bash
Executable File
13 lines
330 B
Bash
Executable File
#!/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
|
|
export RUSTUP_TOOLCHAIN=esp
|
|
if [[ -z "${CARGO_TARGET_DIR}" ]]; then
|
|
export CARGO_TARGET_DIR=target_ci
|
|
fi
|
|
|
|
cargo embassy-devtool build --group xtensa
|