diff options
author | Oliver Steffen <osteffen@redhat.com> | 2023-08-03 13:44:22 +0200 |
---|---|---|
committer | Ard Biesheuvel <workofard@gmail.com> | 2023-08-04 16:36:04 +0200 |
commit | 744c42bfd81e572a81e5f8327e4194a52f46df46 (patch) | |
tree | 709d8760b7b0e866d6fee37c01a3c97aa6ade26b | |
parent | 01ad4134c3e6339ac53c85fccf62ed10d5b6d662 (diff) | |
download | edk2-744c42bfd81e572a81e5f8327e4194a52f46df46.tar.gz edk2-744c42bfd81e572a81e5f8327e4194a52f46df46.tar.bz2 edk2-744c42bfd81e572a81e5f8327e4194a52f46df46.zip |
OvmfPkg/PlatformCI: Use recent Qemu on Windows
Bump the version of the Qemu chocolatey package up to 2023.7.25.
The Linux CI is already using Qemu 8.
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4324
Signed-off-by: Oliver Steffen <osteffen@redhat.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Michael Kubacki <michael.kubacki@microsoft.com>
-rw-r--r-- | OvmfPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OvmfPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml b/OvmfPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml index b3b91aa84e..f7cba193d7 100644 --- a/OvmfPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml +++ b/OvmfPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml @@ -139,7 +139,7 @@ jobs: run_flags: $(Run.Flags)
usePythonVersion: ${{ variables.default_python_version }}
extra_install_step:
- - powershell: choco install qemu --version=2021.5.5; Write-Host "##vso[task.prependpath]c:\Program Files\qemu"
+ - powershell: choco install qemu --version=2023.7.25; Write-Host "##vso[task.prependpath]c:\Program Files\qemu"
displayName: Install QEMU and Set QEMU on path # friendly name displayed in the UI
condition: and(gt(variables.pkg_count, 0), succeeded())
|