Skip to content

[WIP] Update build_wheels to new version and allow force build in PR for debug #236

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 15, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ on:
release:
push:
branches:
- "master"
- "*"

jobs:
build_wheels:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
if: "contains(github.event.head_commit.message, 'build wheels') ||
github.event.head_commit.branch == 'master' "
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
Expand All @@ -30,7 +32,7 @@ jobs:

- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel==1.3.0
python -m pip install cibuildwheel==1.10.0

- name: Install Visual C++ for Python 2.7
if: startsWith(matrix.os, 'windows')
Expand Down