aboutsummaryrefslogtreecommitdiff
path: root/ci.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ci.sh')
-rwxr-xr-xci.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/ci.sh b/ci.sh
index ee2f320b5..36a6dea30 100755
--- a/ci.sh
+++ b/ci.sh
@@ -2,6 +2,12 @@
2 2
3set -eo pipefail 3set -eo pipefail
4 4
5# check-cfg is stable on rustc 1.79 but not cargo 1.79.
6# however, our cargo-batch is currently based on cargo 1.80, which does support check-cfg.
7# so, force build.rs scripts to emit check-cfg commands.
8# when 1.80 hits stable we can make build.rs unconditionally emit check-cfg and remove all this.
9export EMBASSY_FORCE_CHECK_CFG=1
10
5export RUSTFLAGS=-Dwarnings 11export RUSTFLAGS=-Dwarnings
6export DEFMT_LOG=trace,embassy_hal_internal=debug,embassy_net_esp_hosted=debug,cyw43=info,cyw43_pio=info,smoltcp=info 12export DEFMT_LOG=trace,embassy_hal_internal=debug,embassy_net_esp_hosted=debug,cyw43=info,cyw43_pio=info,smoltcp=info
7if [[ -z "${CARGO_TARGET_DIR}" ]]; then 13if [[ -z "${CARGO_TARGET_DIR}" ]]; then