wheels #76
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: wheels | |
on: | |
workflow_dispatch: | |
release: | |
types: | |
- published | |
jobs: | |
make_sdist: | |
name: Make SDist | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Build SDist | |
run: pipx run build --sdist | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: cibw-sdist | |
path: dist/*.tar.gz | |
build_wheels: | |
name: "Build wheel: ${{ matrix.python }}, ${{ matrix.arch }} on ${{ matrix.os }}" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python: [38, 39, 310, 311, 312] | |
os: [ubuntu-latest, macos-13] | |
arch: [auto64] | |
include: | |
- python: 38 | |
os: ubuntu-latest | |
arch: aarch64 | |
- python: 39 | |
os: ubuntu-latest | |
arch: aarch64 | |
- python: 310 | |
os: ubuntu-latest | |
arch: aarch64 | |
- python: 311 | |
os: ubuntu-latest | |
arch: aarch64 | |
- python: 312 | |
os: ubuntu-latest | |
arch: aarch64 | |
steps: | |
- uses: docker/setup-qemu-action@v3 | |
if: matrix.arch != 'auto64' | |
with: | |
platforms: arm64 | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install compiler tools on macOS | |
if: runner.os == 'macOS' | |
run: | | |
brew install make automake swig gmp mpfr boost | |
export PATH="/usr/local/opt/make/libexec/gnubin:$PATH" | |
- uses: pypa/[email protected] | |
env: | |
CIBW_ARCHS: ${{ matrix.arch }} | |
CIBW_BUILD: cp${{ matrix.python }}-* | |
CIBW_BUILD_VERBOSITY: 2 | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: cibw-wheels-${{ matrix.os }}-${{ matrix.python }}-${{ matrix.arch }} | |
path: wheelhouse/*.whl | |
test_sdist: | |
needs: [make_sdist] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
pattern: cibw-* | |
path: dist | |
merge-multiple: true | |
- name: Install extra deps on Linux | |
if: runner.os == 'Linux' | |
run: sudo apt-get update && sudo apt-get install -y libboost-dev swig autoconf libtool | |
- name: test sdist | |
run: python -m pip install dist/*.tar.gz | |
upload_all: | |
needs: [build_wheels, make_sdist] | |
runs-on: ubuntu-latest | |
if: github.event_name == 'release' && github.event.action == 'published' | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
pattern: cibw-* | |
path: dist | |
merge-multiple: true | |
- uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
# Remember to generate this and set it in "GitHub Secrets" | |
password: ${{ secrets.pypi_password }} |