py3dutil/.gitea/workflows/wheels.yml
cecilkorik f0a9469668
Some checks failed
Build / Build wheels on ${{ matrix.os }} (macOS-11) (push) Waiting to run
Build / Build wheels on ${{ matrix.os }} (windows-2019) (push) Waiting to run
Build / Build wheels on ${{ matrix.os }} (ubuntu-20.04) (push) Failing after 53s
attempt CI
2024-02-01 18:18:10 -05:00

31 lines
No EOL
778 B
YAML

name: Build
on: [push, pull_request]
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@v4
# Used to host cibuildwheel
- uses: actions/setup-python@v3
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.16.5
- 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