Skip to content

Commit 3bf3e9a

Browse files
authored
test3
1 parent 3d5bd91 commit 3bf3e9a

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,8 +257,12 @@ jobs:
257257
evict-old-files: 1d
258258

259259
- name: Install Clang
260+
shell: powershell
260261
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
262266
263267
- name: Install Ninja
264268
run: |
@@ -333,8 +337,12 @@ jobs:
333337
evict-old-files: 1d
334338

335339
- name: Install Clang
340+
shell: powershell
336341
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
338346
339347
- name: Install Vulkan SDK
340348
id: get_vulkan

0 commit comments

Comments
 (0)