Update _cutils.pyx #273
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build-Wheels | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up QEMU | |
if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v1 | |
with: | |
platforms: all | |
- name: Build wheels | |
uses: joerick/[email protected] | |
with: | |
output-dir: wheelhouse | |
env: | |
CIBW_ARCHS_LINUX: "x86_64 aarch64" | |
CIBW_ARCHS_WINDOWS: "AMD64" | |
CIBW_ARCHS_MACOS: "x86_64" | |
CIBW_BUILD: cp3*-macosx_x86_64 cp3*-win_amd64 cp3*-manylinux_x86_64 cp3*-manylinux_aarch64 | |
CIBW_SKIP: cp35-* cp36-* | |
- name: Store artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
path: ./wheelhouse/*.whl |