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 3a6fa6e commit d3b5714Copy full SHA for d3b5714
.github/workflows/windows.yml
@@ -81,14 +81,16 @@ jobs:
81
echo CIBW_ENVIRONMENT_WINDOWS=$env:CIBW_ENVIRONMENT_WINDOWS
82
83
- name: Build
84
+ shell: cmd
85
run: |
- if ( "${{ matrix.plat }}" -eq "arm64") {
86
+ if "${{ matrix.plat }}" == "arm64" (
87
echo Setting up ARM64 Developer Command Prompt
88
CALL "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsarm64.bat"
89
+ if errorlevel 1 exit /b 1
90
PATH=C:\Program Files\LLVM\bin;%PATH%
- }
91
+ )
92
git submodule update --init --recursive
- & $env:BASH_PATH -lc tools/build_steps_windows.sh
93
+ %BASH_PATH% -lc tools/build_steps_windows.sh
94
95
- name: Test
96
0 commit comments