Merge pull request #28 from hi-paris/gaetanbrison-patch-5 #70
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 | |
on: | |
push: | |
# To ignore main branch | |
# branches-ignore: | |
# - "main" | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
## os: [ubuntu-20.04, windows-2019, macos-11] | |
os: [windows-2019] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build wheels | |
# uses: pypa/[email protected] | |
uses: pypa/[email protected] | |
# # to supply options, put them in 'env', like: | |
# env: | |
# CIBW_BEFORE_BUILD="pip install numpy cython" | |
- uses: actions/upload-artifact@v2 | |
with: | |
path: ./wheelhouse/*.whl | |
# name: Build | |
# on: | |
# push: | |
# branches-ignore: | |
# - main | |
# pull_request: | |
# branches-ignore: | |
# - main | |
# jobs: | |
# build_wheels: | |
# name: Build wheels on ${{ matrix.os }} | |
# runs-on: ${{ matrix.os }} | |
# strategy: | |
# matrix: | |
# os: [macos-10.15] | |
# # os: [ubuntu-20.04, windows-2019, macos-10.15] | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: Build wheels | |
# uses: pypa/[email protected] | |
# # to supply options, put them in 'env', like: | |
# # env: | |
# # CIBW_SOME_OPTION: value | |
# - uses: actions/upload-artifact@v2 | |
# with: | |
# path: ./wheelhouse/*.whl |