Skip to content

Commit ff991c6

Browse files
committed
Try setting CIBW_ARCHS_LINUX explicitly
Signed-off-by: Darby Johnston <[email protected]>
1 parent fae163a commit ff991c6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/python-package.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,11 @@ jobs:
173173
matrix:
174174
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-13, macos-latest]
175175
python-build: ['cp37', 'cp38', 'cp39', 'cp310', 'cp311', 'cp312']
176+
include:
177+
- os: ubuntu-latest
178+
arch: x86_64
179+
- os: ubuntu-24.04-arm
180+
arch: aarch64
176181
exclude:
177182
- { os: macos-latest, python-build: 'cp37' }
178183
steps:
@@ -185,7 +190,7 @@ jobs:
185190
env:
186191
CIBW_BUILD: ${{ matrix.python-build }}*
187192
CIBW_SKIP: '*musllinux*'
188-
CIBW_ARCHS_LINUX: auto
193+
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
189194
MACOSX_DEPLOYMENT_TARGET: 10.14
190195

191196
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)