Don't install rc version of qemu on windows

Who even decided that intalling rc by default is a good idea?
This commit is contained in:
Berkus Decker 2020-11-24 17:13:25 +02:00
parent 1c37e0dfba
commit c174ad204b
1 changed files with 7 additions and 1 deletions

View File

@ -87,8 +87,14 @@ jobs:
if: runner.os == 'Windows'
shell: pwsh
- name: Add custom Scoop bucket (Windows)
run: |
scoop bucket add scoop-for-ci https://github.com/metta-systems/scoop-for-ci
if: runner.os == 'Windows'
shell: pwsh
- name: Install QEMU (Windows)
run: scoop install qemu
run: scoop install qemu-510
if: runner.os == 'Windows'
shell: pwsh