Skip to content

Commit c2c7b83

Browse files
committed
Try Vinod's fix.
1 parent 506c53b commit c2c7b83

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/windows-arm.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,21 @@ jobs:
3232
- name: Setup visual studio
3333
uses: microsoft/setup-msbuild@v2
3434

35+
- name: Download LLVM installer for woa64
36+
run: |
37+
curl -L -o LLVM-woa64.exe https://github.com/llvm/llvm-project/releases/download/llvmorg-19.1.5/LLVM-19.1.5-woa64.exe
38+
39+
- name: Install LLVM silently
40+
shell: pwsh
41+
run: |
42+
Start-Process -FilePath ".\LLVM-woa64.exe" -ArgumentList "/S" -Wait
43+
44+
- name: Add LLVM to PATH
45+
shell: pwsh
46+
run: |
47+
$llvmPath = "C:\Program Files\LLVM\bin"
48+
echo "$llvmPath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
49+
3550
- name: Build
3651
run: |
3752
git submodule update --init --recursive

0 commit comments

Comments
 (0)