Wheels #200
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: | |
inputs: | |
overrideVersion: | |
description: Manually force a version | |
release: | |
types: | |
- published | |
concurrency: | |
group: wheels-${{ github.head_ref }} | |
cancel-in-progress: true | |
env: | |
SETUPTOOLS_SCM_PRETEND_VERSION: ${{ github.event.inputs.overrideVersion }} | |
CIBW_ENVIRONMENT: "PIP_PREFER_BINARY=1" | |
permissions: | |
id-token: write # sigstore | |
jobs: | |
build_sdist: | |
name: Build SDist | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Build SDist | |
run: pipx run build --sdist | |
- name: Sign the dists with Sigstore | |
uses: sigstore/gh-action-sigstore-python@v1.2.3 | |
with: | |
inputs: ./dist/*.tar.gz | |
- name: Check metadata | |
run: pipx run twine check --strict dist/* | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: dist/*.tar.gz | |
name: wheels-sdist | |
build_arch_wheels: | |
name: ${{ matrix.python }} on ${{ matrix.arch }} | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python: [37, 38, 39, 310, 311, 312] | |
arch: [aarch64] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- uses: docker/setup-qemu-action@v3.0.0 | |
with: | |
platforms: all | |
- uses: pypa/cibuildwheel@v2.17 | |
env: | |
CIBW_BUILD: cp${{ matrix.python }}-manylinux_* | |
CIBW_ARCHS: ${{ matrix.arch }} | |
- name: Verify clean directory | |
run: git diff --exit-code | |
shell: bash | |
- name: Sign the dists with Sigstore | |
uses: sigstore/gh-action-sigstore-python@v1.2.3 | |
with: | |
inputs: ./wheelhouse/*.whl | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
path: wheelhouse/*.whl | |
name: wheel-aarch-${{ strategy.job-index }} | |
build_wheels: | |
name: ${{ matrix.type }} ${{ matrix.arch }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-2019, macos-latest, ubuntu-latest] | |
arch: [auto64] | |
include: | |
- os: macos-latest | |
arch: universal2 | |
- os: windows-2019 | |
arch: auto32 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- uses: pypa/cibuildwheel@v2.17 | |
env: | |
CIBW_BUILD: ${{ matrix.build }} | |
CIBW_ARCHS: ${{ matrix.arch }} | |
- name: Verify clean directory | |
run: git diff --exit-code | |
shell: bash | |
- name: Sign the dists with Sigstore | |
uses: sigstore/gh-action-sigstore-python@v1.2.3 | |
with: | |
inputs: ./wheelhouse/*.whl | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
path: wheelhouse/*.whl | |
name: wheels-${{ strategy.job-index }} | |
upload_all: | |
name: Upload if release | |
needs: [build_wheels, build_arch_wheels, build_sdist] | |
runs-on: ubuntu-latest | |
if: github.event_name == 'release' && github.event.action == 'published' | |
environment: | |
name: pypi | |
url: https://pypi.org/p/boost-histogram | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
pattern: wheels-* | |
merge-multiple: true | |
path: dist | |
- name: List all files | |
run: ls -lh dist | |
- uses: pypa/gh-action-pypi-publish@release/v1 |