We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d58accf commit 4696260Copy full SHA for 4696260
.github/workflows/CI.yml
@@ -148,7 +148,14 @@ jobs:
148
architecture: x86
149
- name: Build (Windows ARM64)
150
if: ${{ contains(matrix.settings.host, 'ARM') }}
151
- run: ${{ matrix.settings.build }}
+ run: |
152
+ set PATH=%PATH%;%USERPROFILE%\.cargo\bin
153
+ echo PATH=%PATH%
154
+ echo INCLUDE=%INCLUDE%
155
+ echo LIB=%LIB%
156
+ where cl.exe
157
+ where link.exe
158
+ ${{ matrix.settings.build }}
159
shell: cmd
160
- name: Build (Windows)
161
if: ${{ contains(matrix.settings.host, 'windows') && !contains(matrix.settings.host, 'ARM') }}
0 commit comments