Skip to content

Commit

Permalink
Update CI to build multiple targets
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Feb 17, 2024
1 parent dc86ce6 commit 9e13927
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,18 @@ jobs:

strategy:
matrix:
python-version: ["3.11"]
target:
# https://quay.io/organization/pypa
- manylinux_2_28:x86_64
- manylinux_2_28_aarch64
# - musllinux_1_1_x86_64

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Build Python wheels
run: make manylinux
run: |
TARGET=${{ matrix.target }}
PLATFORM=$(echo "$TARGET" | cut -d: -f1)
ARCH=$(echo "$TARGET" | cut -d: -f2)
make manylinux PLATFORM=$PLATFORM ARCH=$ARCH

0 comments on commit 9e13927

Please sign in to comment.