Skip to content

Commit 2845351

Browse files
Update nightly.yml
1 parent 6f12a66 commit 2845351

File tree

1 file changed

+15
-9
lines changed

1 file changed

+15
-9
lines changed

.github/workflows/nightly.yml

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,23 @@ jobs:
4646

4747
- name: Install dependencies
4848
run: vcpkg install --triplet x64-windows
49-
50-
- name: Download win64devkit
51-
run: |
52-
Invoke-RestMethod "https://github.com/skeeto/w64devkit/archive/refs/tags/v2.2.0.zip" -OutFile 'w64devkit.zip'
53-
- name: install win64devkit
49+
- name: Install llvm-mingw
5450
run: |
55-
Expand-Archive ./w64devkit.zip -DestinationPath .
51+
curl -LO https://github.com/mstorsjo/llvm-mingw/releases/download/20250430/llvm-mingw-20250430-ucrt-x86_64.zip
52+
powershell Expand-Archive llvm-mingw*.zip -DestinationPath .
53+
del llvm-mingw*.zip
54+
mv llvm-mingw* c:\llvm-mingw
55+
echo "c:\llvm-mingw\bin" | Out-File -FilePath $Env:GITHUB_PATH -Encoding utf8 -Append
56+
# - name: Download win64devkit
57+
# run: |
58+
# Invoke-RestMethod "https://github.com/skeeto/w64devkit/archive/refs/tags/v2.2.0.zip" -OutFile 'w64devkit.zip'
59+
# - name: install win64devkit
60+
# run: |
61+
# Expand-Archive ./w64devkit.zip -DestinationPath .
5662

57-
- name: Add w64devkit to PATH
58-
run: |
59-
echo "$(Get-Location)\w64devkit\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
63+
# - name: Add w64devkit to PATH
64+
# run: |
65+
# echo "$(Get-Location)\w64devkit\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
6066

6167

6268
- name: Install Ninja

0 commit comments

Comments
 (0)