From 5dc2a3105f7066fbb781e437ed63f93c236775cf Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 14:13:42 +0000 Subject: [PATCH] Add missing musl skip for ppc64le builds (#1109) (#1110) 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 f4f12129ca319734d7299b8552ee1d5baa6d3395) Co-authored-by: Matthew Treinish --- .github/workflows/wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 29e175372..d23532419 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -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: