summaryrefslogtreecommitdiff
path: root/.github/workflows/build_wheels_weekly.yml
diff options
context:
space:
mode:
authorRĂ©mi Flamary <remi.flamary@gmail.com>2021-05-27 14:27:27 +0200
committerGitHub <noreply@github.com>2021-05-27 14:27:27 +0200
commit1f16614954e2522fbdb1598c5b1f5c3630c68472 (patch)
tree5b179f2a9f5c6637f7a26286efdf7a15903e52b8 /.github/workflows/build_wheels_weekly.yml
parent178c281fc91e014f5e148b7017430928d715de8c (diff)
Build wheels on ARM and in PR (#253)
Diffstat (limited to '.github/workflows/build_wheels_weekly.yml')
-rw-r--r--.github/workflows/build_wheels_weekly.yml10
1 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/build_wheels_weekly.yml b/.github/workflows/build_wheels_weekly.yml
index 5691d8c..32b697f 100644
--- a/.github/workflows/build_wheels_weekly.yml
+++ b/.github/workflows/build_wheels_weekly.yml
@@ -4,7 +4,10 @@ on:
workflow_dispatch:
schedule:
- cron: '30 0 * * 1'
-
+ push:
+ branches:
+ - "master"
+
jobs:
build_wheels:
name: ${{ matrix.os }}
@@ -30,11 +33,6 @@ jobs:
run: |
python -m pip install cibuildwheel==1.10.0
- - name: Install Visual C++ for Python 2.7
- if: startsWith(matrix.os, 'windows')
- run: |
- choco install vcpython27 -f -y
-
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v1