@@ -11,7 +11,6 @@ export RUSTC_BOOTSTRAP := "1"
1111# If you run with `just --set v 1` then we make cargo run in verbose mode
1212v := " 0"
1313verbose := if v == " 1" { " --verbose" } else { " " }
14- nightly := " nightly-2026-02-26"
1514
1615# Our default target. It does everything that you might want to do pre-checkin.
1716check : build-all build-all-examples fmt-check clippy-examples clippy-targets clippy-host test
@@ -57,14 +56,14 @@ build-arm-targets:
5756
5857# Builds our workspace with various features, building core from source, but skipping anything that requires atomics
5958build-tier3-no-atomics target :
60- cargo + {{ nightly }} build --target {{ target}} -Zbuild-std=core {{ verbose}}
61- cargo + {{ nightly }} build --target {{ target}} -Zbuild-std=core --features " serde, defmt, critical-section-single-core, check-asm" {{ verbose}}
59+ cargo build --target {{ target}} -Zbuild-std=core {{ verbose}}
60+ cargo build --target {{ target}} -Zbuild-std=core --features " serde, defmt, critical-section-single-core, check-asm" {{ verbose}}
6261
6362# Builds our workspace with various features, building core from source
6463build-tier3 target :
65- cargo + {{ nightly }} build --target {{ target}} -Zbuild-std=core {{ verbose}}
66- cargo + {{ nightly }} build --target {{ target}} -Zbuild-std=core --features " serde, defmt, critical-section-multi-core, check-asm" {{ verbose}}
67- cargo + {{ nightly }} build --target {{ target}} -Zbuild-std=core --features " serde, defmt, critical-section-single-core, check-asm" {{ verbose}}
64+ cargo build --target {{ target}} -Zbuild-std=core {{ verbose}}
65+ cargo build --target {{ target}} -Zbuild-std=core --features " serde, defmt, critical-section-multi-core, check-asm" {{ verbose}}
66+ cargo build --target {{ target}} -Zbuild-std=core --features " serde, defmt, critical-section-single-core, check-asm" {{ verbose}}
6867
6968# Builds our workspace with various features
7069build-tier2 target :
0 commit comments