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 506c53b commit c2c7b83Copy full SHA for c2c7b83
.github/workflows/windows-arm.yml
@@ -32,6 +32,21 @@ jobs:
32
- name: Setup visual studio
33
uses: microsoft/setup-msbuild@v2
34
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
42
+ Start-Process -FilePath ".\LLVM-woa64.exe" -ArgumentList "/S" -Wait
43
44
+ - name: Add LLVM to PATH
45
46
47
+ $llvmPath = "C:\Program Files\LLVM\bin"
48
+ echo "$llvmPath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
49
50
- name: Build
51
run: |
52
git submodule update --init --recursive
0 commit comments