Skip to content

Fixed compiler errors to build on linux. #11

Fixed compiler errors to build on linux.

Fixed compiler errors to build on linux. #11

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-latest, windows-latest, macOS-13, macOS-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
# Used to host cibuildwheel
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.21.3
- name: Build wheels
run: |
cd python
python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v4
with:
path: ./python/wheelhouse/*.whl
if-no-files-found: error