Skip to content

Commit 653481f

Browse files
committed
Stop building wheels for Linux/aarch64
The CI setup using qemu for aarch64 seems highly unstable, with segfaults which are unrelated to aiortc. Until the situation stabilises, stop building wheels for Linux/aarch64.
1 parent 37f4020 commit 653481f

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/tests.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,6 @@ jobs:
102102
arch: arm64
103103
- os: macos-13
104104
arch: x86_64
105-
- os: ubuntu-latest
106-
arch: aarch64
107105
- os: ubuntu-latest
108106
arch: i686
109107
- os: ubuntu-latest
@@ -129,9 +127,8 @@ jobs:
129127
CIBW_ENVIRONMENT_WINDOWS: INCLUDE=C:\\cibw\\vendor\\include LIB=C:\\cibw\\vendor\\lib
130128
CIBW_SKIP: '*-musllinux* pp*'
131129
CIBW_TEST_COMMAND: python -c "import aiortc"
132-
# There are no binary wheels for cryptography on 32-bit platforms,
133-
# and Python randomly segfaults on Linux/aarch64.
134-
CIBW_TEST_SKIP: "*-{manylinux_aarch64,manylinux_i686,win32}"
130+
# There are no binary wheels for cryptography on 32-bit platforms.
131+
CIBW_TEST_SKIP: "*-{manylinux_i686,win32}"
135132
run: |
136133
pip install cibuildwheel
137134
cibuildwheel --output-dir dist

0 commit comments

Comments
 (0)