aboutsummaryrefslogtreecommitdiff
path: root/ci.sh
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-06-13 20:40:04 +0200
committerDario Nieuwenhuis <[email protected]>2024-06-13 20:40:04 +0200
commit4d9115b3fb17f441a3280dd7913e682157ca1dac (patch)
tree2b3200de38599efcd696835a7d0a01f8e6e27365 /ci.sh
parent8d79679bb27ce6eca8904e167a8762ad5fc90604 (diff)
Update stable to Rust 1.79.
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