Browse Source

add cibuildwheel github action

pull/3/head
Brett Langdon 5 years ago
parent
commit
528ef019fd
Signed by: brettlangdon GPG Key ID: A70042D88B95AA2B
1 changed files with 26 additions and 0 deletions
  1. +26
    -0
      .github/workflows/build.yml

+ 26
- 0
.github/workflows/build.yml View File

@ -0,0 +1,26 @@
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-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install cibuildwheel
run: python -m pip install cibuildwheel~=1.9.0
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl

Loading…
Cancel
Save