From d33246b072f222bd221471da7d498593ef8c6211 Mon Sep 17 00:00:00 2001 From: Dániel Buga Date: Sat, 26 Aug 2023 12:40:57 +0200 Subject: Add new feature/arch combinations to executor CI check --- ci.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'ci.sh') diff --git a/ci.sh b/ci.sh index e83b3b847..db00c406c 100755 --- a/ci.sh +++ b/ci.sh @@ -19,6 +19,19 @@ cargo batch \ --- build --release --manifest-path embassy-executor/Cargo.toml --target thumbv7em-none-eabi --features nightly,log \ --- build --release --manifest-path embassy-executor/Cargo.toml --target thumbv7em-none-eabi --features nightly,defmt \ --- build --release --manifest-path embassy-executor/Cargo.toml --target thumbv6m-none-eabi --features nightly,defmt \ + --- build --release --manifest-path embassy-executor/Cargo.toml --target thumbv6m-none-eabi --features nightly,defmt,arch-cortex-m,executor-thread,executor-interrupt,integrated-timers \ + --- build --release --manifest-path embassy-executor/Cargo.toml --target thumbv7em-none-eabi --features nightly,arch-cortex-m \ + --- build --release --manifest-path embassy-executor/Cargo.toml --target thumbv7em-none-eabi --features nightly,arch-cortex-m,integrated-timers \ + --- build --release --manifest-path embassy-executor/Cargo.toml --target thumbv7em-none-eabi --features nightly,arch-cortex-m,executor-thread \ + --- build --release --manifest-path embassy-executor/Cargo.toml --target thumbv7em-none-eabi --features nightly,arch-cortex-m,executor-thread,integrated-timers \ + --- build --release --manifest-path embassy-executor/Cargo.toml --target thumbv7em-none-eabi --features nightly,arch-cortex-m,executor-interrupt \ + --- build --release --manifest-path embassy-executor/Cargo.toml --target thumbv7em-none-eabi --features nightly,arch-cortex-m,executor-interrupt,integrated-timers \ + --- build --release --manifest-path embassy-executor/Cargo.toml --target thumbv7em-none-eabi --features nightly,arch-cortex-m,executor-thread,executor-interrupt \ + --- build --release --manifest-path embassy-executor/Cargo.toml --target thumbv7em-none-eabi --features nightly,arch-cortex-m,executor-thread,executor-interrupt,integrated-timers \ + --- build --release --manifest-path embassy-executor/Cargo.toml --target riscv32imac-unknown-none-elf --features nightly,arch-riscv32 \ + --- build --release --manifest-path embassy-executor/Cargo.toml --target riscv32imac-unknown-none-elf --features nightly,arch-riscv32,integrated-timers \ + --- build --release --manifest-path embassy-executor/Cargo.toml --target riscv32imac-unknown-none-elf --features nightly,arch-riscv32,executor-thread \ + --- build --release --manifest-path embassy-executor/Cargo.toml --target riscv32imac-unknown-none-elf --features nightly,arch-riscv32,executor-thread,integrated-timers \ --- build --release --manifest-path embassy-sync/Cargo.toml --target thumbv6m-none-eabi --features nightly,defmt \ --- build --release --manifest-path embassy-time/Cargo.toml --target thumbv6m-none-eabi --features nightly,defmt,defmt-timestamp-uptime,tick-hz-32_768,generic-queue-8 \ --- build --release --manifest-path embassy-net/Cargo.toml --target thumbv7em-none-eabi --features defmt,tcp,udp,dns,proto-ipv4,medium-ethernet \ -- cgit From c5732ce2857ce4028a2e03abeb65254200473e5a Mon Sep 17 00:00:00 2001 From: xoviat Date: Sun, 3 Sep 2023 11:48:41 -0500 Subject: ci: remove failing tests --- ci.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ci.sh') diff --git a/ci.sh b/ci.sh index db00c406c..4112144bc 100755 --- a/ci.sh +++ b/ci.sh @@ -180,4 +180,9 @@ if [[ -z "${TELEPROBE_TOKEN-}" ]]; then exit fi +rm out/tests/rpi-pico/ethernet_w5100s_perf +rm out/tests/nrf52840-dk/ethernet_enc28j60_perf +rm out/tests/nrf52840-dk/wifi_esp_hosted_perf +rm out/tests/rpi-pico/cyw43-perf + teleprobe client run -r out/tests -- cgit From 8a55adbfd865bc8912e0e2ac61c9db88f287808b Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Mon, 4 Sep 2023 23:01:07 +0200 Subject: Revert "ci: remove failing tests" This reverts commit c5732ce2857ce4028a2e03abeb65254200473e5a. --- ci.sh | 5 ----- 1 file changed, 5 deletions(-) (limited to 'ci.sh') diff --git a/ci.sh b/ci.sh index 4112144bc..db00c406c 100755 --- a/ci.sh +++ b/ci.sh @@ -180,9 +180,4 @@ if [[ -z "${TELEPROBE_TOKEN-}" ]]; then exit fi -rm out/tests/rpi-pico/ethernet_w5100s_perf -rm out/tests/nrf52840-dk/ethernet_enc28j60_perf -rm out/tests/nrf52840-dk/wifi_esp_hosted_perf -rm out/tests/rpi-pico/cyw43-perf - teleprobe client run -r out/tests -- cgit From 4072a16af636d2943b41323aabf0e0c73a80b893 Mon Sep 17 00:00:00 2001 From: xoviat Date: Mon, 11 Sep 2023 17:50:08 -0500 Subject: ci: remove wpan_ble for hil --- ci.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ci.sh') diff --git a/ci.sh b/ci.sh index db00c406c..ba684e449 100755 --- a/ci.sh +++ b/ci.sh @@ -180,4 +180,6 @@ if [[ -z "${TELEPROBE_TOKEN-}" ]]; then exit fi +rm out/tests/stm32wb55rg/wpan_ble + teleprobe client run -r out/tests -- cgit From f877a5889d8b2a89b09a0bda1bb740cfb7eae64c Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Tue, 12 Sep 2023 01:43:01 +0200 Subject: ci: fix colliding files warning. --- ci.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ci.sh') diff --git a/ci.sh b/ci.sh index ba684e449..45cc7e6e1 100755 --- a/ci.sh +++ b/ci.sh @@ -145,8 +145,8 @@ cargo batch \ --- build --release --manifest-path examples/stm32u5/Cargo.toml --target thumbv8m.main-none-eabihf --out-dir out/examples/stm32u5 \ --- build --release --manifest-path examples/stm32wb/Cargo.toml --target thumbv7em-none-eabihf --out-dir out/examples/stm32wb \ --- build --release --manifest-path examples/stm32wl/Cargo.toml --target thumbv7em-none-eabihf --out-dir out/examples/stm32wl \ - --- build --release --manifest-path examples/boot/application/nrf/Cargo.toml --target thumbv7em-none-eabi --features embassy-nrf/nrf52840,skip-include --out-dir out/examples/boot/nrf \ - --- build --release --manifest-path examples/boot/application/nrf/Cargo.toml --target thumbv8m.main-none-eabihf --features embassy-nrf/nrf9160-ns,skip-include --out-dir out/examples/boot/nrf \ + --- build --release --manifest-path examples/boot/application/nrf/Cargo.toml --target thumbv7em-none-eabi --features embassy-nrf/nrf52840,skip-include --out-dir out/examples/boot/nrf52840 \ + --- build --release --manifest-path examples/boot/application/nrf/Cargo.toml --target thumbv8m.main-none-eabihf --features embassy-nrf/nrf9160-ns,skip-include --out-dir out/examples/boot/nrf9160 \ --- build --release --manifest-path examples/boot/application/rp/Cargo.toml --target thumbv6m-none-eabi --features skip-include --out-dir out/examples/boot/rp \ --- build --release --manifest-path examples/boot/application/stm32f3/Cargo.toml --target thumbv7em-none-eabi --features skip-include --out-dir out/examples/boot/stm32f3 \ --- build --release --manifest-path examples/boot/application/stm32f7/Cargo.toml --target thumbv7em-none-eabi --features skip-include --out-dir out/examples/boot/stm32f7 \ -- cgit From 07233ca5b44a1b2022c05ee66815f60a2da761cf Mon Sep 17 00:00:00 2001 From: xoviat Date: Thu, 14 Sep 2023 19:09:35 -0500 Subject: ci: build low-power on l0 --- ci.sh | 1 + 1 file changed, 1 insertion(+) (limited to 'ci.sh') diff --git a/ci.sh b/ci.sh index 45cc7e6e1..da35c5a45 100755 --- a/ci.sh +++ b/ci.sh @@ -92,6 +92,7 @@ cargo batch \ --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features nightly,stm32wb15cc,defmt,exti,time-driver-any,unstable-traits \ --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv6m-none-eabi --features nightly,stm32l072cz,defmt,exti,time-driver-any,unstable-traits \ --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv6m-none-eabi --features nightly,stm32l041f6,defmt,exti,time-driver-any,unstable-traits \ + --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv6m-none-eabi --features nightly,stm32l073cz,defmt,exti,time-driver-any,unstable-traits,low-power \ --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7m-none-eabi --features nightly,stm32l151cb-a,defmt,exti,time-driver-any,unstable-traits \ --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7m-none-eabi --features nightly,stm32f398ve,defmt,exti,time-driver-any,unstable-traits \ --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7m-none-eabi --features nightly,stm32f378cc,defmt,exti,time-driver-any,unstable-traits \ -- cgit From 8315cf064eab133006e1397819b50f072fec6398 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Sat, 16 Sep 2023 03:44:01 +0200 Subject: stm32: add stm32wba support. --- ci.sh | 1 + 1 file changed, 1 insertion(+) (limited to 'ci.sh') diff --git a/ci.sh b/ci.sh index da35c5a45..a3d9ef81a 100755 --- a/ci.sh +++ b/ci.sh @@ -145,6 +145,7 @@ cargo batch \ --- build --release --manifest-path examples/stm32l5/Cargo.toml --target thumbv8m.main-none-eabihf --out-dir out/examples/stm32l5 \ --- build --release --manifest-path examples/stm32u5/Cargo.toml --target thumbv8m.main-none-eabihf --out-dir out/examples/stm32u5 \ --- build --release --manifest-path examples/stm32wb/Cargo.toml --target thumbv7em-none-eabihf --out-dir out/examples/stm32wb \ + --- build --release --manifest-path examples/stm32wba/Cargo.toml --target thumbv8m.main-none-eabihf --out-dir out/examples/stm32wba \ --- build --release --manifest-path examples/stm32wl/Cargo.toml --target thumbv7em-none-eabihf --out-dir out/examples/stm32wl \ --- build --release --manifest-path examples/boot/application/nrf/Cargo.toml --target thumbv7em-none-eabi --features embassy-nrf/nrf52840,skip-include --out-dir out/examples/boot/nrf52840 \ --- build --release --manifest-path examples/boot/application/nrf/Cargo.toml --target thumbv8m.main-none-eabihf --features embassy-nrf/nrf9160-ns,skip-include --out-dir out/examples/boot/nrf9160 \ -- cgit From ad0a306ea52f7d842efa8ce40c89f462501ed018 Mon Sep 17 00:00:00 2001 From: xoviat Date: Sat, 16 Sep 2023 10:19:09 -0500 Subject: stm32: fix wpan_ble test --- ci.sh | 2 -- 1 file changed, 2 deletions(-) (limited to 'ci.sh') diff --git a/ci.sh b/ci.sh index a3d9ef81a..87f47487d 100755 --- a/ci.sh +++ b/ci.sh @@ -182,6 +182,4 @@ if [[ -z "${TELEPROBE_TOKEN-}" ]]; then exit fi -rm out/tests/stm32wb55rg/wpan_ble - teleprobe client run -r out/tests -- cgit From 4bfbcd6c72fadd97ef71403a1406ff437f4aa6e8 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Mon, 18 Sep 2023 03:00:59 +0200 Subject: stm32: use PAC enums for VOS. --- ci.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ci.sh') diff --git a/ci.sh b/ci.sh index 87f47487d..37d3e7783 100755 --- a/ci.sh +++ b/ci.sh @@ -85,6 +85,8 @@ cargo batch \ --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features nightly,stm32f413vh,defmt,exti,time-driver-any,unstable-traits \ --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features nightly,stm32f429zi,log,exti,time-driver-any,unstable-traits,embedded-sdmmc \ --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features nightly,stm32f730i8,defmt,exti,time-driver-any,unstable-traits \ + --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features nightly,stm32h753zi,defmt,exti,time-driver-any,unstable-traits \ + --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features nightly,stm32h735zg,defmt,exti,time-driver-any,unstable-traits \ --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features nightly,stm32h755zi-cm7,defmt,exti,time-driver-any,unstable-traits \ --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features nightly,stm32h7b3ai,defmt,exti,time-driver-any,unstable-traits \ --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features nightly,stm32l476vg,defmt,exti,time-driver-any,unstable-traits \ -- cgit From 8b5fb254c04ec479b8a7f3bd5880a944313abbf7 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Tue, 26 Sep 2023 05:16:26 +0200 Subject: tests/stm32: add L0, L1, L4, L4+, L5 --- ci.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ci.sh') diff --git a/ci.sh b/ci.sh index 37d3e7783..db5f4d800 100755 --- a/ci.sh +++ b/ci.sh @@ -173,6 +173,11 @@ cargo batch \ --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32wb55rg --out-dir out/tests/stm32wb55rg \ --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32h563zi --out-dir out/tests/stm32h563zi \ --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32u585ai --out-dir out/tests/stm32u585ai \ + --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv6m-none-eabi --features stm32l073rz --out-dir out/tests/stm32l073rz \ + --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv7m-none-eabi --features stm32l152re --out-dir out/tests/stm32l152re \ + --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32l4a6zg --out-dir out/tests/stm32l4a6zg \ + --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32l4r5zi --out-dir out/tests/stm32l4r5zi \ + --- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv8m.main-none-eabihf --features stm32l552ze --out-dir out/tests/stm32l552ze \ --- build --release --manifest-path tests/rp/Cargo.toml --target thumbv6m-none-eabi --out-dir out/tests/rpi-pico \ --- build --release --manifest-path tests/nrf/Cargo.toml --target thumbv7em-none-eabi --out-dir out/tests/nrf52840-dk \ --- build --release --manifest-path tests/riscv32/Cargo.toml --target riscv32imac-unknown-none-elf \ -- cgit From 6b3745fc4741b536b111f6e9bbc39e108d8a2eef Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Thu, 28 Sep 2023 05:17:22 +0200 Subject: temporarily disable wifi_esp_hosted_perf test. --- ci.sh | 1 + 1 file changed, 1 insertion(+) (limited to 'ci.sh') diff --git a/ci.sh b/ci.sh index db5f4d800..af98d6ed2 100755 --- a/ci.sh +++ b/ci.sh @@ -183,6 +183,7 @@ cargo batch \ --- build --release --manifest-path tests/riscv32/Cargo.toml --target riscv32imac-unknown-none-elf \ $BUILD_EXTRA +rm out/tests/nrf52840-dk/wifi_esp_hosted_perf if [[ -z "${TELEPROBE_TOKEN-}" ]]; then echo No teleprobe token found, skipping running HIL tests -- cgit