Skip to content
This repository was archived by the owner on Nov 12, 2022. It is now read-only.

Commit fb1ec9f

Browse files
authored
Auto merge of #557 - servo:jdm-patch-26, r=jdm
Fix windows CI. Equivalent of servo/mozjs#301.
2 parents 6dad062 + e3120d1 commit fb1ec9f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/rust.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,11 @@ jobs:
3131
- name: Install deps on windows
3232
if: startsWith(matrix.os, 'windows')
3333
run: |
34-
Start-BitsTransfer -Source https://ftp.mozilla.org/pub/mozilla/libraries/win32/MozillaBuildSetup-Latest.exe -Destination ./MozillaBuildSetup.exe
34+
Start-BitsTransfer -Source https://ftp.mozilla.org/pub/mozilla/libraries/win32/MozillaBuildSetup-3.4.exe -Destination ./MozillaBuildSetup.exe
3535
.\MozillaBuildSetup.exe /S | Out-Null
36-
iwr -useb get.scoop.sh | iex
37-
scoop install llvm --global
36+
iwr -useb get.scoop.sh -outfile 'install.ps1'
37+
.\install.ps1 -RunAsAdmin
38+
scoop install [email protected] --global
3839
echo "C:\ProgramData\scoop\shims;C:\Users\runneradmin\scoop\shims" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
3940
- uses: actions-rs/toolchain@v1
4041
with:

0 commit comments

Comments
 (0)