aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authori509VCB <[email protected]>2025-03-19 13:28:03 -0500
committeri509VCB <[email protected]>2025-03-19 13:28:03 -0500
commit91684a11c8a15b62a773a1ace40791fcf80fdad2 (patch)
tree283e33309ed6d091b77ced4de58f9d7256756d68
parent9afb385f6d92149ff15cf03c3bfaa8cb512a6191 (diff)
build c1104 seperately for defmt buffer size
-rwxr-xr-xci.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/ci.sh b/ci.sh
index 84312127f..5b63c507b 100755
--- a/ci.sh
+++ b/ci.sh
@@ -244,7 +244,6 @@ cargo batch \
244 --- build --release --manifest-path examples/stm32wba/Cargo.toml --target thumbv8m.main-none-eabihf --artifact-dir out/examples/stm32wba \ 244 --- build --release --manifest-path examples/stm32wba/Cargo.toml --target thumbv8m.main-none-eabihf --artifact-dir out/examples/stm32wba \
245 --- build --release --manifest-path examples/stm32wl/Cargo.toml --target thumbv7em-none-eabi --artifact-dir out/examples/stm32wl \ 245 --- build --release --manifest-path examples/stm32wl/Cargo.toml --target thumbv7em-none-eabi --artifact-dir out/examples/stm32wl \
246 --- build --release --manifest-path examples/lpc55s69/Cargo.toml --target thumbv8m.main-none-eabihf --artifact-dir out/examples/lpc55s69 \ 246 --- build --release --manifest-path examples/lpc55s69/Cargo.toml --target thumbv8m.main-none-eabihf --artifact-dir out/examples/lpc55s69 \
247 --- build --release --manifest-path examples/mspm0c1104/Cargo.toml --target thumbv6m-none-eabi --artifact-dir out/examples/mspm0c1104 \
248 --- build --release --manifest-path examples/mspm0g3507/Cargo.toml --target thumbv6m-none-eabi --artifact-dir out/examples/mspm0g3507 \ 247 --- build --release --manifest-path examples/mspm0g3507/Cargo.toml --target thumbv6m-none-eabi --artifact-dir out/examples/mspm0g3507 \
249 --- build --release --manifest-path examples/mspm0g3519/Cargo.toml --target thumbv6m-none-eabi --artifact-dir out/examples/mspm0g3519 \ 248 --- build --release --manifest-path examples/mspm0g3519/Cargo.toml --target thumbv6m-none-eabi --artifact-dir out/examples/mspm0g3519 \
250 --- build --release --manifest-path examples/mspm0l1306/Cargo.toml --target thumbv6m-none-eabi --artifact-dir out/examples/mspm0l1306 \ 249 --- build --release --manifest-path examples/mspm0l1306/Cargo.toml --target thumbv6m-none-eabi --artifact-dir out/examples/mspm0l1306 \
@@ -313,6 +312,11 @@ cargo batch \
313 $BUILD_EXTRA 312 $BUILD_EXTRA
314 313
315 314
315# MSPM0C1104 must be built seperately since cargo batch does not consider env vars set in `.cargo/config.toml`.
316# Since the target has 1KB of ram, we need to limit defmt's buffer size.
317DEFMT_RTT_BUFFER_SIZE="72" cargo batch \
318 --- build --release --manifest-path examples/mspm0c1104/Cargo.toml --target thumbv6m-none-eabi --artifact-dir out/examples/mspm0c1104 \
319
316# temporarily disabled, these boards are dead. 320# temporarily disabled, these boards are dead.
317rm -rf out/tests/stm32f103c8 321rm -rf out/tests/stm32f103c8
318rm -rf out/tests/nrf52840-dk 322rm -rf out/tests/nrf52840-dk