From 60d19eb1ded0bebdb217b4aca26bcf7f1ae6839d Mon Sep 17 00:00:00 2001 From: Jonas Dedden Date: Thu, 29 Feb 2024 22:24:47 +0100 Subject: [PATCH] Correct test exclusion --- .github/workflows/build-wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index 1c77ecc5..e1a7cf55 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -30,7 +30,7 @@ jobs: CIBW_MANYLINUX_AARCH64_IMAGE: ghcr.io/jonded94/resiliparse-manylinux_2_28_aarch64 CIBW_ARCHS_MACOS: "x86_64 arm64" CIBW_ARCHS_LINUX: "x86_64 aarch64" - CIBW_TEST_SKIP: "*-macosx_arm64 *-linux_aarch64" # Apple Silicon wheels cannot be tested + CIBW_TEST_SKIP: "*-macosx_arm64 *-manylinux_aarch64" # Apple Silicon wheels cannot be tested CIBW_REPAIR_WHEEL_COMMAND_MACOS: >- DYLD_LIBRARY_PATH=$LIBRARY_PATH delocate-wheel --require-archs {delocate_archs} -w {dest_dir} {wheel} CIBW_BEFORE_BUILD_WINDOWS: "python -m pip install delvewheel"