Skip to content

Commit d199ffa

Browse files
committed
github: workflows: test: build only on windows, test on cm3
As of recent discussion it seems like qemu on windows is unreliable run those tests as build only and test on qemu_cortex_m3 which should be more reliable overall. Link: zephyrproject-rtos/zephyr#113543 (review) Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
1 parent 25e897e commit d199ffa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
if [ "${{ runner.os }}" = "macOS" ]; then
5151
EXTRA_TWISTER_FLAGS="-P native_sim --build-only"
5252
elif [ "${{ runner.os }}" = "Windows" ]; then
53-
EXTRA_TWISTER_FLAGS="-P native_sim --short-build-path -O/tmp/twister-out"
53+
EXTRA_TWISTER_FLAGS="-P native_sim --build-only --short-build-path -O/tmp/twister-out"
5454
fi
5555
5656
PLATFORMS_FLAGS=""
@@ -59,7 +59,7 @@ jobs:
5959
else
6060
PLATFORMS_FLAGS+="-p native_sim "
6161
fi
62-
PLATFORMS_FLAGS+="-p qemu_cortex_m0 "
62+
PLATFORMS_FLAGS+="-p qemu_cortex_m3 "
6363
PLATFORMS_FLAGS+="-p qemu_riscv32 "
6464
PLATFORMS_FLAGS+="-p qemu_riscv64 "
6565
PLATFORMS_FLAGS+="-p qemu_x86 "

0 commit comments

Comments
 (0)