Build wheels #70
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: Build wheels | |
on: [workflow_dispatch] | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# os: [ubuntu-latest, windows-latest, macos-13, macos-14] | |
# os: [ubuntu-latest, macos-13, macos-14] | |
os: [windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
# Used to host cibuildwheel | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- uses: ilammy/msvc-dev-cmd@v1 | |
- name: Bootstrap vcpkg | |
run: | | |
git submodule update --init --recursive | |
python bootstrap_vcpkg.py | |
- name: Install cibuildwheel | |
run: python -m pip install cibuildwheel==2.19.1 pipx | |
- name: Build wheels | |
run: pipx run cibuildwheel --output-dir wheelhouse | |
env: | |
MACOSX_DEPLOYMENT_TARGET: '10.15' # 10.15 is the minimum version that fully supports c++17 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} | |
path: ./wheelhouse/*.whl |