Skip to content

Upload wheels in deploy step (testpypi on push for now to test if it … #13

Upload wheels in deploy step (testpypi on push for now to test if it …

Upload wheels in deploy step (testpypi on push for now to test if it … #13

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-20.04, windows-2019, macOS-11]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- uses: actions/setup-python@v4
- name: Install cibuildwheel
run: python -m pip install cibuildwheel
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
# only build cpython
CIBW_BUILD: "cp*"
# exclude 32 bit and musl architectures to reduce build time
# these shouldn't be needed
CIBW_SKIP: "*-win32 *-manylinux_i686 *musllinux*"
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl