From 962fab86df31607a10c5097863d195a68078bf94 Mon Sep 17 00:00:00 2001 From: DL6ER Date: Mon, 2 Jun 2025 19:57:02 +0200 Subject: [PATCH] Really skip on RICV64 Signed-off-by: DL6ER --- test/api/checkAPI.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/api/checkAPI.py b/test/api/checkAPI.py index 2b17df89..cf6186e7 100644 --- a/test/api/checkAPI.py +++ b/test/api/checkAPI.py @@ -119,8 +119,7 @@ def main(): if __name__ == "__main__": # Exit early when this is a RISCV build - # ENV TARGETPLATFORM == "linux/riscv64" - if os.getenv("TARGETPLATFORM") == "linux/riscv64": + if os.getenv("CI_ARCH") == "linux/riscv64": print("Skipping API test on RISCV builds") exit(0)