File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -257,8 +257,12 @@ jobs:
257
257
evict-old-files : 1d
258
258
259
259
- name : Install Clang
260
+ shell : powershell
260
261
run : |
261
- choco install llvm --version=19.1.7
262
+ $ErrorActionPreference = "Stop"
263
+ Invoke-WebRequest -Uri "https://github.com/llvm/llvm-project/releases/download/llvmorg-19.1.7/LLVM-19.1.7-${{ matrix.arch == 'x64' && 'win64' || 'woa64' }}.exe" -OutFile "llvm.exe"
264
+ Start-Process -FilePath .\llvm.exe -ArgumentList "/S", "/D=C:\LLVM" -Wait
265
+ echo "C:\LLVM\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
262
266
263
267
- name : Install Ninja
264
268
run : |
@@ -333,8 +337,12 @@ jobs:
333
337
evict-old-files : 1d
334
338
335
339
- name : Install Clang
340
+ shell : powershell
336
341
run : |
337
- choco install llvm --version=19.1.7
342
+ $ErrorActionPreference = "Stop"
343
+ Invoke-WebRequest -Uri "https://github.com/llvm/llvm-project/releases/download/llvmorg-19.1.7/LLVM-19.1.7-${{ matrix.arch == 'x64' && 'win64' || 'woa64' }}.exe" -OutFile "llvm.exe"
344
+ Start-Process -FilePath .\llvm.exe -ArgumentList "/S", "/D=C:\LLVM" -Wait
345
+ echo "C:\LLVM\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
338
346
339
347
- name : Install Vulkan SDK
340
348
id : get_vulkan
You can’t perform that action at this time.
0 commit comments