summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorRĂ©mi Flamary <remi.flamary@gmail.com>2021-04-15 14:45:05 +0200
committerGitHub <noreply@github.com>2021-04-15 14:45:05 +0200
commit5e8806f25f29104a8d23ba41eea1ab42dd43f72f (patch)
tree71c3a3711b7cc7fde0a6097f167b43f1607cfb9a /.github
parent9a301b5cb7893544ab77bb8bbf3d889707ea381b (diff)
[WIP] Update build_wheels to new version and allow force build in PR for debug (#236)
* add optional build wheels in PR * test if in build wheels * remove wheels builders * update build wheels et tets run
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build_wheels.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml
index 662a604..f779d93 100644
--- a/.github/workflows/build_wheels.yml
+++ b/.github/workflows/build_wheels.yml
@@ -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]
@@ -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')