We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bdb61f commit d78595aCopy full SHA for d78595a
.github/workflows/wheels.yml
@@ -28,10 +28,9 @@ jobs:
28
fetch-depth: 0
29
30
- name: Set up MSVC environment
31
- shell: cmd
32
- run: |
33
- call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" arm64
34
- echo "MSVC environment for ARM64 initialized."
+ uses: ilammy/msvc-dev-cmd@v1
+ with:
+ arch: arm64 # Ensure this matches your target architecture
35
36
- name: Build wheels
37
uses: pypa/[email protected]
@@ -43,6 +42,9 @@ jobs:
43
42
CIBW_PLATFORM: 'auto'
44
CIBW_BEFORE_BUILD_WINDOWS: bash scripts/cibw_before_build_windows.sh
45
CIBW_ENVIRONMENT_WINDOWS: |
+ PATH="%PATH%"
46
+ INCLUDE="%INCLUDE%"
47
+ LIB="%LIB%"
48
CC=cl.exe
49
CXX=cl.exe
50
LD=link.exe
0 commit comments