1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
name: Wheels
on:
workflow_dispatch:
inputs:
overrideVersion:
description: Manually force a version
release:
types:
- published
pull_request:
paths:
- .github/workflows/wheels.yml
schedule:
- cron: "34 3 * * *"
permissions:
actions: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
SETUPTOOLS_SCM_PRETEND_VERSION: ${{ github.event.inputs.overrideVersion }}
jobs:
build_sdist:
name: Build SDist
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true
- name: Build SDist
run: pipx run build --sdist
- name: Check metadata
run: pipx run twine check --strict dist/*.tar.gz
- uses: actions/upload-artifact@v6
with:
path: dist/*
name: wheels-sdist
build_wheels:
name: ${{ matrix.build }} ${{ matrix.arch }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: macos-15-intel
arch: auto64
build: "*"
- os: macos-latest
arch: auto64
build: "*"
- os: windows-latest
arch: auto64
build: "cp*"
- os: windows-latest
arch: auto64
build: "{p,g}p*"
- os: windows-latest
arch: auto32
build: "*"
- os: windows-11-arm
arch: auto
build: "*"
- os: ubuntu-latest
arch: auto64
build: "*manylinux*"
- os: ubuntu-latest
arch: auto64
build: "*musllinux*"
- os: ubuntu-24.04-arm
arch: auto64
build: "*manylinux*"
- os: ubuntu-24.04-arm
arch: auto64
build: "*musllinux*"
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true
- uses: astral-sh/setup-uv@v7
- uses: pypa/cibuildwheel@v3.3
env:
CIBW_BUILD: ${{ matrix.build }}
CIBW_ARCHS: ${{ matrix.arch }}
- name: Verify clean directory
run: git diff --exit-code
shell: bash
- name: Upload wheels
uses: actions/upload-artifact@v6
with:
path: wheelhouse/*.whl
name: wheels-${{ strategy.job-index }}
build_ios_wheels:
name: iOS ${{ matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
runs-on: [macos-latest, macos-15-intel]
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true
- run: brew uninstall cmake; brew install cmake
- uses: pypa/cibuildwheel@v3.3
env:
CIBW_PLATFORM: ios
- name: Verify clean directory
run: git diff --exit-code
shell: bash
- name: Upload wheels
uses: actions/upload-artifact@v6
with:
path: wheelhouse/*.whl
name: wheels-ios-${{ matrix.runs-on }}
# build_android_wheels:
# name: Android ${{ matrix.runs-on }}
# runs-on: ${{ matrix.runs-on }}
# strategy:
# fail-fast: false
# matrix:
# runs-on: [ubuntu-latest, macos-latest]
# steps:
# - uses: actions/checkout@v6
# with:
# fetch-depth: 0
# submodules: true
#
# - uses: mhsmith/cibuildwheel@android
# env:
# CIBW_PLATFORM: android
#
# - name: Verify clean directory
# run: git diff --exit-code
# shell: bash
#
# - name: Upload wheels
# uses: actions/upload-artifact@v6
# with:
# path: wheelhouse/*.whl
# name: wheels-android-${{ matrix.runs-on }}
upload_all:
name: Upload if release
needs: [build_wheels, build_ios_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
attestations: write
contents: read
steps:
- uses: actions/download-artifact@v7
with:
pattern: wheels-*
merge-multiple: true
path: dist
- name: List all files
run: ls -lh dist
- name: Generate artifact attestation for sdist and wheels
uses: actions/attest-build-provenance@v3
with:
subject-path: "dist/boost_histogram-*"
- uses: pypa/gh-action-pypi-publish@release/v1
upload_nightly_wheels:
name: Upload nightly wheels to Anaconda Cloud
if: |
(github.event_name == 'workflow_dispatch' || github.event_name == 'schedule') &&
!github.event.repository.fork &&
github.ref == 'refs/heads/develop'
needs: [build_wheels]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v7
with:
pattern: wheels-*
merge-multiple: true
path: dist
- name: List all files
run: ls -lh dist
- name: Upload wheel to Anaconda Cloud as nightly
uses: scientific-python/upload-nightly-action@5748273c71e2d8d3a61f3a11a16421c8954f9ecf # 0.6.3
with:
artifacts_path: dist
anaconda_nightly_upload_token: ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }}
|