Skip to content

Update build_wheels.yml #47

Update build_wheels.yml

Update build_wheels.yml #47

Workflow file for this run

name: Build
on:
push:
paths:
- '**.cpp'
- '**.h'
- '**.py'
- '**.toml'
- '**.yml'
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13,macos-14] # was macos-latest
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/cibuildwheel@v2.22.0
env: #
MACOSX_DEPLOYMENT_TARGET: "10.15" #
# CIBW_SOME_OPTION: value
# ...
#with:
# package-dir: .
# output-dir: wheelhouse
# config-file: "{package}/pyproject.toml
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build sdist
run: pipx run build --sdist
- uses: actions/upload-artifact@v4
with:
name: cibw-sdist
path: dist/*.tar.gz
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl