Skip to content

Commit

Permalink
Add missing musl skip for ppc64le builds (#1109) (#1110)
Browse files Browse the repository at this point in the history
This commit fixes an issue in the ppc64le wheel builds. One of the two
ppc64le wheel build jobs was incorrectly attempting to build wheels for
musl environments which isn't a supported platform and the jobs failed
to configure. This commit just adds the missing skip for those
environments to the job configuration to fix this issue.

Co-authored-by: Ivan Carvalho <8753214+IvanIsCoding@users.noreply.github.com>
(cherry picked from commit f4f1212)

Co-authored-by: Matthew Treinish <mtreinish@kortar.org>
  • Loading branch information
mergify[bot] and mtreinish committed Feb 22, 2024
1 parent d1f0a1c commit 5dc2a31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ jobs:
run: |
python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_SKIP: cp36-* cp37-* cp39-* cp310-* cp311-* pp* *win32
CIBW_SKIP: cp36-* cp37-* cp39-* cp310-* cp311-* pp* *win32 *musl*
CIBW_ARCHS_LINUX: ppc64le
- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 5dc2a31

Please sign in to comment.