34 lines
722 B
YAML
34 lines
722 B
YAML
|
name: Build
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
build_wheels:
|
||
|
name: Build wheels on ${{ matrix.os }}
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
os: [ubuntu-20.04, windows-2019, macOS-11]
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
# Used to host cibuildwheel
|
||
|
- uses: actions/setup-python@v3
|
||
|
|
||
|
- name: Install cibuildwheel
|
||
|
run: python -m pip install cibuildwheel==2.12.1
|
||
|
|
||
|
- 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@v3
|
||
|
with:
|
||
|
path: ./wheelhouse/*.whl
|