Skip to content

Commit

Permalink
github: rework publish workflow
Browse files Browse the repository at this point in the history
remove wheelbuild-labeled as it wasn't used anyways. Also remove
additional inclusions and rewrite PyPI-publish so that it is a plain
simple workflow

Signed-off-by: Mikhail Koviazin <[email protected]>
  • Loading branch information
mkmkme committed Jul 19, 2024
1 parent 9e721a0 commit 058626d
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 132 deletions.
108 changes: 0 additions & 108 deletions .github/workflows/REUSABLE-wheeler.yaml

This file was deleted.

87 changes: 81 additions & 6 deletions .github/workflows/pypi-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,88 @@ on:
permissions:
contents: read # to fetch code (actions/checkout)


jobs:

release:
uses: ./.github/workflows/REUSABLE-wheeler.yaml
with:
release: true
build_sdist:
name: Build source dist
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Build sdist
run: |
python3 setup.py sdist
- uses: actions/upload-artifact@v3
with:
name: source-dist
path: ./dist/*.tar.gz

build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macos-latest]
env:
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
MACOSX_DEPLOYMENT_TARGET: "10.15"
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all

- name: Build wheels
uses: pypa/[email protected]
env:
# configure cibuildwheel to build native archs ('auto'), and some
# emulated ones
CIBW_ARCHS_LINUX: auto aarch64 ppc64le s390x

- uses: actions/upload-artifact@v3
with:
name: ${{matrix.os}}-wheels
path: ./wheelhouse/*.whl

publish:
name: Pypi publish
needs: ['build_sdist', 'build_wheels']
runs-on: ubuntu-latest
environment: pypi
permissions:
id-token: write
secrets: inherit
steps:
- uses: actions/download-artifact@v3
with:
name: ubuntu-20.04-wheels
path: artifacts/linux
- uses: actions/download-artifact@v3
with:
name: windows-2019-wheels
path: artifacts/windows
- uses: actions/download-artifact@v3
with:
name: macos-latest-wheels
path: artifacts/macos
- uses: actions/download-artifact@v3
with:
name: source-dist
path: artifacts/sdist
- name: unify wheel structure
run: |
mkdir dist
cp -R artifacts/windows/* dist
cp -R artifacts/linux/* dist
cp -R artifacts/macos/* dist
cp -R artifacts/sdist/* dist
- name: Publish to Pypi
uses: pypa/gh-action-pypi-publish@release/v1
18 changes: 0 additions & 18 deletions .github/workflows/wheelbuild-labeled.yaml

This file was deleted.

0 comments on commit 058626d

Please sign in to comment.