Fix typo #6
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 | |
on: [push, pull_request] | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-13, macos-latest] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
# Used to host cibuildwheel | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
- name: Setup build tools (Linux) | |
if: contains(matrix.os, 'ubuntu') | |
run: sudo apt update && sudo apt install build-essential cmake ninja-build git -y | |
- name: Setup build tools (macOS) | |
if: contains(matrix.os, 'macos') | |
run: brew install ninja cmake | |
- name: Setup build tools (Windows) | |
if: contains(matrix.os, 'windows') | |
run: choco install ninja cmake | |
- name: Install cibuildwheel | |
run: python -m pip install cibuildwheel==2.22.0 | |
- name: Build wheels | |
run: python -m cibuildwheel --output-dir wheelhouse | |
# to supply options, put them in 'env', like: | |
# env: | |
# CIBW_SOME_OPTION: value | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} | |
path: ./wheelhouse/*.whl |