Skip to content

Commit 4696260

Browse files
committed
ci: fix windows environment
1 parent d58accf commit 4696260

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/CI.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,14 @@ jobs:
148148
architecture: x86
149149
- name: Build (Windows ARM64)
150150
if: ${{ contains(matrix.settings.host, 'ARM') }}
151-
run: ${{ matrix.settings.build }}
151+
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 }}
152159
shell: cmd
153160
- name: Build (Windows)
154161
if: ${{ contains(matrix.settings.host, 'windows') && !contains(matrix.settings.host, 'ARM') }}

0 commit comments

Comments
 (0)