Skip to content

Commit 973940e

Browse files
committed
DEBUG: build Windows wheels on fork
1 parent e5528c7 commit 973940e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/wheel_tests_and_release.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
# Runs on every merge to main to upload .dev0 wheels to anaconda.org
99
- main
1010
- v1.**
11+
- fix-windows-wheels
1112
# Make it possible to upload wheels manually if needed (for anaconda.org only, not PyPI)
1213
workflow_dispatch:
1314
inputs:
@@ -28,6 +29,7 @@ env:
2829

2930
jobs:
3031
build_linux_x86_64_wheels:
32+
if: false
3133
name: Build ${{ matrix.cibw_python }} ${{ matrix.cibw_arch }} ${{ matrix.os }}
3234
runs-on: ${{ matrix.os }}
3335
strategy:
@@ -60,6 +62,7 @@ jobs:
6062
if-no-files-found: error
6163

6264
build_linux_aarch64_wheels:
65+
if: false
6366
name: Build ${{ matrix.cibw_python }} ${{ matrix.cibw_arch }} ${{ matrix.os }}
6467
runs-on: ${{ matrix.os }}
6568
strategy:
@@ -91,6 +94,7 @@ jobs:
9194
path: ./dist/*.whl
9295

9396
build_macos_wheels:
97+
if: false
9498
name: Build ${{ matrix.cibw_python }} ${{ matrix.cibw_arch }} ${{ matrix.os }}
9599
runs-on: ${{ matrix.os }}
96100
strategy:
@@ -147,8 +151,8 @@ jobs:
147151
fail-fast: false
148152
matrix:
149153
os: [windows-latest, windows-11-arm]
150-
cibw_arch: ["AMD64", "x86", "ARM64"]
151-
cibw_python: ["cp312", "cp313", "cp313t", "cp314", "cp314t"]
154+
cibw_arch: ["x86", "ARM64"]
155+
cibw_python: ["cp312", "cp314t"]
152156
exclude:
153157
- os: windows-latest
154158
cibw_arch: ARM64
@@ -200,6 +204,7 @@ jobs:
200204
if-no-files-found: error
201205

202206
deploy_pypi:
207+
if: false
203208
name: Release (PyPI)
204209
needs:
205210
[

0 commit comments

Comments
 (0)