Skip to content

Commit

Permalink
Fix GHA workflow for multi-platform builds (#25)
Browse files Browse the repository at this point in the history
Enumerate the specific identifiers to build, and correctly set the cibuildwheel environment variables.
  • Loading branch information
jdidion authored Sep 12, 2023
1 parent 0e6b559 commit 0b2c3e9
Showing 1 changed file with 33 additions and 7 deletions.
40 changes: 33 additions & 7 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,33 @@ on:

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
name: Build wheels for ${{ matrix.python }}-${{ matrix.platform.target }}_${{ matrix.platform.arch }} on ${{ matrix.platform.os }}
runs-on: ${{ matrix.platform.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macOS-11]
PYTHON_VERSION: ["3.8", "3.9", "3.10", "3.11"]
python: [cp38, cp39, cp310, cp311]
platform:
- os: ubuntu-latest
target: manylinux
arch: x86_64
- os: ubuntu-latest
target: musllinux
arch: x86_64
# These don't work right now - they just hang while pulling the build image from quay.
# If this doesn't resolve itself, we could try to configure different images:
# https://cibuildwheel.readthedocs.io/en/stable/options/.
#- os: ubuntu-latest
# target: manylinux
# arch: aarch64
#- os: ubuntu-latest
# target: musllinux
# arch: aarch64
- os: macos-latest
target: macosx
arch: x86_64
- os: macos-latest
target: macosx
arch: arm64

steps:
- uses: actions/checkout@v4
Expand All @@ -21,16 +42,21 @@ jobs:

# Used to host cibuildwheel
- uses: actions/setup-python@v4
with:
python-version: 3.8

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.15.0

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
# to supply options, put them in 'env', like:
# env:
# CIBW_SOME_OPTION: value
env:
CIBW_ARCHS: ${{ matrix.platform.arch }}
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.platform.target }}_${{ matrix.platform.arch }}
CIBW_BUILD_VERBOSITY: 1

- uses: actions/upload-artifact@v3
with:
name: wheels
path: ./wheelhouse/*.whl
if-no-files-found: error

0 comments on commit 0b2c3e9

Please sign in to comment.