Skip to content

Commit 3ed1e84

Browse files
authoredSep 25, 2022
Merge pull request #266 from rust-osdev/v0.9-ci-windows
Use choco instead of scoop for installing QEMU on Windows
2 parents 42da77b + 7787567 commit 3ed1e84

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed
 

‎.github/workflows/build.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,10 @@ jobs:
6565
HOMEBREW_NO_AUTO_UPDATE: 1
6666
HOMEBREW_NO_BOTTLE_SOURCE_FALLBACK: 1
6767
HOMEBREW_NO_INSTALL_CLEANUP: 1
68-
- name: Install Scoop (Windows)
69-
run: |
70-
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
71-
echo "$HOME\scoop\shims" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
72-
if: runner.os == 'Windows'
73-
shell: pwsh
7468
- name: Install QEMU (Windows)
75-
run: scoop install qemu
69+
run: |
70+
choco install qemu --version 2021.5.5
71+
echo "$Env:Programfiles\qemu" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
7672
if: runner.os == 'Windows'
7773
shell: pwsh
7874
- name: "Print QEMU Version"

0 commit comments

Comments
 (0)
Please sign in to comment.