Skip to content

Commit

Permalink
release.yml - readd musllinux
Browse files Browse the repository at this point in the history
  • Loading branch information
K0lb3 committed Oct 23, 2024
1 parent d555c7e commit edfc45f
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,36 +76,36 @@ jobs:
with:
path: ./wheelhouse/*.whl

# build_musllinux_wheels_ubuntu:
# name: Build musllinux wheels on ubuntu-latest
# runs-on: ubuntu-latest
# needs: [build_sdist]
build_musllinux_wheels_ubuntu:
name: Build musllinux wheels on ubuntu-latest
runs-on: ubuntu-latest
needs: [build_sdist]

# steps:
# - uses: actions/checkout@v4
# with:
# submodules: recursive
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
# with:
# platforms: all
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: all

# - name: Build wheels
# uses: joerick/[email protected]
# env:
# CIBW_TEST_SKIP: "*"
# CIBW_SKIP: "pp* *-manylinux*"
# CIBW_REPAIR_WHEEL_COMMAND: ''
- name: Build wheels
uses: joerick/[email protected]
env:
CIBW_TEST_SKIP: "*"
CIBW_SKIP: "pp* *-manylinux*"
CIBW_BEFORE_ALL: "apk add libc6-compat" # add libpthread.so.0

# - uses: actions/upload-artifact@v3
# with:
# path: ./wheelhouse/*.whl
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl


upload_pypi:
name: Publish to PyPI
needs: [build_wheels, build_manylinux_wheels_ubuntu, build_sdist]
needs: [build_sdist, build_wheels, build_manylinux_wheels_ubuntu, build_musllinux_wheels_ubuntu]
runs-on: ubuntu-latest

permissions:
Expand Down

0 comments on commit edfc45f

Please sign in to comment.