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 ed91744 commit 9089875Copy full SHA for 9089875
.github/workflows/nightly.yml
@@ -47,8 +47,14 @@ jobs:
47
- name: Install dependencies
48
run: vcpkg install --triplet x64-windows
49
50
- - name: choco install make
51
- run: choco install make
+ - name: Download and install win64devkit
+ run: |
52
+ curl -L https://github.com/skeeto/w64devkit/releases/download/v2.2.0/w64devkit-x64-2.2.0.7z.exe --output w64devkit.zip
53
+ Expand-Archive w64devkit.zip -DestinationPath .
54
+
55
+ - name: Add w64devkit to PATH
56
57
+ echo "$(Get-Location)\w64devkit\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
58
59
60
- name: Install Ninja
0 commit comments