Skip to content

Commit 2efd882

Browse files
committed
CI: Use choco to install QEMU 6.0.0 923ms
This should fix our CI build errors. We install a pinned version of QEMU since the latest 6.1 pre-releases appear to have some problems too.
1 parent 865481e commit 2efd882

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,10 @@ jobs:
5353
HOMEBREW_NO_AUTO_UPDATE: 1
5454
HOMEBREW_NO_BOTTLE_SOURCE_FALLBACK: 1
5555
HOMEBREW_NO_INSTALL_CLEANUP: 1
56-
- name: Install Scoop (Windows)
57-
run: |
58-
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
59-
echo "$HOME\scoop\shims" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
60-
if: runner.os == 'Windows'
61-
shell: pwsh
6256
- name: Install QEMU (Windows)
63-
run: scoop install qemu
57+
run: |
58+
choco install qemu --version 2021.5.5
59+
echo "$Env:Programfiles\qemu" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
6460
if: runner.os == 'Windows'
6561
shell: pwsh
6662
- name: "Print QEMU Version"

0 commit comments

Comments
 (0)