From 7f963d7e43d0ca555e01aee6c79bcc2d5be30ec9 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Mon, 2 Mar 2026 21:33:24 +0100 Subject: [PATCH] CI: Testing for ARMv7 extended to armv7thumb and armv7mthumb --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 349f366..9f6864e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -214,6 +214,10 @@ jobs: gcc -O3 -static -DENABLE_LOGGING -o build/runner/coparun src/coparun/runmem.c \ src/coparun/coparun.c src/coparun/mem_man.c && \ pytest && \ + export CP_TARGET_ARCH=armv7thumb && \ + pytest && \ + export CP_TARGET_ARCH=armv7mthumb && \ + pytest && \ bash tools/create_asm.sh" - uses: actions/upload-artifact@v4