Skip to content

Commit

Permalink
.github/workflows/dist.yml: Split aarch64 job into manylinux, musllinux
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Jun 25, 2024
1 parent 421b6a3 commit 165e131
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:
if: env.CAN_DEPLOY == 'true'

build_wheels:
name: Build wheels on ${{ matrix.os }}, arch ${{ matrix.arch }}
name: Build wheels on ${{ matrix.os }}, arch ${{ matrix.arch }} ${{ matrix.build }}
runs-on: ${{ matrix.os }}
needs: sdists_for_pypi
strategy:
Expand All @@ -168,6 +168,10 @@ jobs:
arch: i686
- os: ubuntu-latest
arch: aarch64
build: manylinux
- os: ubuntu-latest
arch: aarch64
build: musllinux
- os: macos-13
arch: x86_64
- os: macos-14
Expand All @@ -178,6 +182,7 @@ jobs:
SPKGS: _bootstrap _prereq
# Non-Python packages to install as spkgs
TARGETS_PRE: gmp mpfr mpc bliss coxeter3 mcqd meataxe sirocco boost_cropped tdlib
CIBW_BUILD: "*${{ matrix.build }}*"
# Disable building PyPy wheels on all platforms
CIBW_SKIP: "pp*"
#
Expand Down Expand Up @@ -244,7 +249,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-${{ matrix.arch }}-wheels
name: ${{ matrix.os }}-${{ matrix.build }}-${{ matrix.arch }}-wheels
path: ./wheelhouse/*.whl

upload_wheels:
Expand All @@ -257,7 +262,7 @@ jobs:

- uses: actions/download-artifact@v4
with:
pattern: "*-*-wheels"
pattern: "*-*-*-wheels"
path: wheelhouse
merge-multiple: true

Expand Down

0 comments on commit 165e131

Please sign in to comment.