aboutsummaryrefslogtreecommitdiff
path: root/ci.sh
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2021-12-07 01:24:26 +0100
committerDario Nieuwenhuis <[email protected]>2021-12-07 01:24:26 +0100
commit17c5dc496e725ad31ed5b285e07b38e9ce4ee7d2 (patch)
tree2aff5b317fceac972a0f528dafa0a4b201260143 /ci.sh
parentc1b47599357fbc0c616afe56c5b77539149f6887 (diff)
stm32/tests: add stm32h755zi, stm32wb55rg
Diffstat (limited to 'ci.sh')
-rwxr-xr-xci.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/ci.sh b/ci.sh
index 046038ffa..6beea8677 100755
--- a/ci.sh
+++ b/ci.sh
@@ -60,6 +60,8 @@ cargo batch \
60 --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32f429zi --out-dir out/tests/nucleo-stm32f429zi \ 60 --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32f429zi --out-dir out/tests/nucleo-stm32f429zi \
61 --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32g491re --out-dir out/tests/nucleo-stm32g491re \ 61 --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32g491re --out-dir out/tests/nucleo-stm32g491re \
62 --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv6m-none-eabi --features stm32g071rb --out-dir out/tests/nucleo-stm32g071rb \ 62 --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv6m-none-eabi --features stm32g071rb --out-dir out/tests/nucleo-stm32g071rb \
63 --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32h755zi --out-dir out/tests/nucleo-stm32h755zi \
64 --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32wb55rg --out-dir out/tests/nucleo-stm32wb55rg \
63 65
64 66
65function run_elf { 67function run_elf {
@@ -87,7 +89,7 @@ if [[ -z "${TELEPROBE_TOKEN-}" ]]; then
87fi 89fi
88 90
89for board in $(ls out/tests); do 91for board in $(ls out/tests); do
90 echo Running tests fo board: $board 92 echo Running tests for board: $board
91 for elf in $(ls out/tests/$board); do 93 for elf in $(ls out/tests/$board); do
92 run_elf $board out/tests/$board/$elf 94 run_elf $board out/tests/$board/$elf
93 done 95 done