Skip to content

Commit c5266ab

Browse files
committed
Test wheel
1 parent 88ef16c commit c5266ab

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/wheel.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ${{ matrix.os }}
2121
strategy:
2222
matrix:
23-
os: [ubuntu-latest, windows-latest, macos-12, macos-14]
23+
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-13, macos-14]
2424

2525
steps:
2626
- uses: actions/checkout@v4
@@ -29,11 +29,12 @@ jobs:
2929
uses: pypa/cibuildwheel@v2.22.0
3030
env:
3131
# Select wheels
32-
CIBW_BUILD: "*-manylinux_x86_64 *-win_amd64 *-macosx_x86_64 *-macosx_arm64"
33-
CIBW_SKIP: "cp36-* cp37-* cp38-* pp* cp38-macosx_arm64"
32+
CIBW_BUILD: "*-manylinux_x86_64 *-manylinux_aarch64 *-win_amd64 *-macosx_x86_64 *-macosx_arm64"
33+
CIBW_SKIP: "cp36-* cp37-* cp38-* pp*"
3434
CIBW_ARCHS: "native"
3535
# use manylinux2014
36-
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
36+
CIBW_MANYLINUX_X86_64_IMAGE: "quay.io/pypa/manylinux2014_x86_64"
37+
CIBW_MANYLINUX_AARCH64_IMAGE: "quay.io/pypa/manylinux2014_aarch64"
3738
CIBW_ENVIRONMENT_MACOS: >
3839
MACOSX_DEPLOYMENT_TARGET=10.14
3940
CIBW_TEST_COMMAND: "python -c \"import pyoptinterface as poi; print(dir(poi))\""

0 commit comments

Comments
 (0)