Skip to content

Commit 8ed447c

Browse files
committed
try fix for windows ARM using MSVC as compiler
1 parent a93e9dc commit 8ed447c

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-15-intel, macos-latest]
12+
# os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-15-intel, macos-latest]
13+
os: [windows-latest, windows-11-arm]
1314

1415
steps:
1516
- uses: actions/checkout@v6
@@ -26,10 +27,9 @@ jobs:
2627

2728
- name: Build wheels
2829
run: python -m cibuildwheel --output-dir wheelhouse
29-
# to supply options, put them in 'env', like:
30-
# env:
31-
# CIBW_SOME_OPTION: value
32-
# ...
30+
env:
31+
CIBW_ENVIRONMENT: |
32+
CC=cl CXX=cl # [windows]
3333
3434
- uses: actions/upload-artifact@v6
3535
with:

0 commit comments

Comments
 (0)