From 5e8806f25f29104a8d23ba41eea1ab42dd43f72f Mon Sep 17 00:00:00 2001 From: RĂ©mi Flamary Date: Thu, 15 Apr 2021 14:45:05 +0200 Subject: [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 --- .github/workflows/build_wheels.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to '.github') 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') -- cgit v1.2.3