From de456f82b9116f6a746c4502f3618e044052cbff Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Thu, 22 Feb 2024 08:38:53 -0500 Subject: [PATCH] Add missing musl skip for ppc64le builds (#1109) 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) --- .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 29e175372b..d235324197 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: