aboutsummaryrefslogtreecommitdiff
path: root/ci.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ci.sh')
-rwxr-xr-xci.sh14
1 files changed, 13 insertions, 1 deletions
diff --git a/ci.sh b/ci.sh
index 149999d58..ae0a56032 100755
--- a/ci.sh
+++ b/ci.sh
@@ -291,7 +291,8 @@ cargo batch \
291 --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv6m-none-eabi --features stm32f091rc --artifact-dir out/tests/stm32f091rc \ 291 --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv6m-none-eabi --features stm32f091rc --artifact-dir out/tests/stm32f091rc \
292 --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv8m.main-none-eabihf --features stm32h503rb --artifact-dir out/tests/stm32h503rb \ 292 --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv8m.main-none-eabihf --features stm32h503rb --artifact-dir out/tests/stm32h503rb \
293 --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv6m-none-eabi --features stm32u083rc --artifact-dir out/tests/stm32u083rc \ 293 --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv6m-none-eabi --features stm32u083rc --artifact-dir out/tests/stm32u083rc \
294 --- build --release --manifest-path tests/rp/Cargo.toml --target thumbv6m-none-eabi --artifact-dir out/tests/rpi-pico \ 294 --- build --release --manifest-path tests/rp/Cargo.toml --target thumbv6m-none-eabi --features rp2040 --artifact-dir out/tests/rpi-pico \
295 --- build --release --manifest-path tests/rp/Cargo.toml --target thumbv8m.main-none-eabihf --features rp235xb --artifact-dir out/tests/pimoroni-pico-plus-2 \
295 --- build --release --manifest-path tests/nrf/Cargo.toml --target thumbv6m-none-eabi --features nrf51422 --artifact-dir out/tests/nrf51422-dk \ 296 --- build --release --manifest-path tests/nrf/Cargo.toml --target thumbv6m-none-eabi --features nrf51422 --artifact-dir out/tests/nrf51422-dk \
296 --- build --release --manifest-path tests/nrf/Cargo.toml --target thumbv7em-none-eabi --features nrf52832 --artifact-dir out/tests/nrf52832-dk \ 297 --- build --release --manifest-path tests/nrf/Cargo.toml --target thumbv7em-none-eabi --features nrf52832 --artifact-dir out/tests/nrf52832-dk \
297 --- build --release --manifest-path tests/nrf/Cargo.toml --target thumbv7em-none-eabi --features nrf52833 --artifact-dir out/tests/nrf52833-dk \ 298 --- build --release --manifest-path tests/nrf/Cargo.toml --target thumbv7em-none-eabi --features nrf52833 --artifact-dir out/tests/nrf52833-dk \
@@ -319,6 +320,17 @@ rm out/tests/stm32f207zg/usart_rx_ringbuffered
319# doesn't work, gives "noise error", no idea why. usart_dma does pass. 320# doesn't work, gives "noise error", no idea why. usart_dma does pass.
320rm out/tests/stm32u5a5zj/usart 321rm out/tests/stm32u5a5zj/usart
321 322
323# probe-rs error: "multi-core ram flash start not implemented yet"
324# As of 2025-02-17 these tests work when run from flash
325rm out/tests/pimoroni-pico-plus-2/multicore
326rm out/tests/pimoroni-pico-plus-2/gpio_multicore
327# Doesn't work when run from ram on the 2350
328rm out/tests/pimoroni-pico-plus-2/flash
329# This test passes locally but fails on the HIL, no idea why
330rm out/tests/pimoroni-pico-plus-2/i2c
331# The pico2 plus doesn't have the adcs hooked up like the picoW does.
332rm out/tests/pimoroni-pico-plus-2/adc
333
322if [[ -z "${TELEPROBE_TOKEN-}" ]]; then 334if [[ -z "${TELEPROBE_TOKEN-}" ]]; then
323 echo No teleprobe token found, skipping running HIL tests 335 echo No teleprobe token found, skipping running HIL tests
324 exit 336 exit