Skip to content

Ignore vcpkg_installed and wheelhouse #84

Ignore vcpkg_installed and wheelhouse

Ignore vcpkg_installed and wheelhouse #84

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-24.04, macos-26]
steps:
- uses: actions/checkout@v6
with:
submodules: true
persist-credentials: false
# Used to host cibuildwheel
- uses: actions/setup-python@v5
- name: Build wheels
uses: pypa/cibuildwheel@v3.4.0
env:
CIBW_BUILD: "cp{311,312,313,314}-*"
MACOSX_DEPLOYMENT_TARGET: "26.0"
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl