From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id 77D9074003B for ; Thu, 3 Aug 2023 11:44:51 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=yD84qqAScGsMYhS4ISpaDdsbcjexCPIsUX9wrsARuaQ=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding:Content-Type; s=20140610; t=1691063090; v=1; b=PU7GUp7H3RuIg758B67r61rErQsdp3/8ajbnmodbz2TrWXqyLdTkcBQjb0hL1j+1oQIoWnPU NX3QbK5I+sJrH5yjnMmuY7B4B7PIOkuZH1drjCVeZQDHrJ3iM5lnyaKsZNpwhQWJS6aymLewNju bvnxzL7fsr7VvlY80i+QxIIc= X-Received: by 127.0.0.2 with SMTP id PAuHYY7687511xvfo1n1MhAx; Thu, 03 Aug 2023 04:44:50 -0700 X-Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mx.groups.io with SMTP id smtpd.web11.12671.1691063089327253449 for ; Thu, 03 Aug 2023 04:44:49 -0700 X-Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-340-JYz_t-q3MAm4xD5p7SFJJg-1; Thu, 03 Aug 2023 07:44:43 -0400 X-MC-Unique: JYz_t-q3MAm4xD5p7SFJJg-1 X-Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id A3F1580027F; Thu, 3 Aug 2023 11:44:42 +0000 (UTC) X-Received: from osteffen-laptop.redhat.com (unknown [10.39.194.106]) by smtp.corp.redhat.com (Postfix) with ESMTP id C75F240C6CCC; Thu, 3 Aug 2023 11:44:40 +0000 (UTC) From: "Oliver Steffen" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Bob Feng , Gerd Hoffmann , Jiewen Yao , Jordan Justen , Liming Gao , Michael D Kinney , Michael Kubacki , Rebecca Cran , Sean Brogan , Yuwei Chen , Laszlo Ersek , Oliver Steffen Subject: [edk2-devel] [PATCH v1 1/4] OvmfPkg/PlatformCI: Use recent Qemu on Windows Date: Thu, 3 Aug 2023 13:44:22 +0200 Message-ID: <20230803114425.318246-2-osteffen@redhat.com> In-Reply-To: <20230803114425.318246-1-osteffen@redhat.com> References: <20230803114425.318246-1-osteffen@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.2 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,osteffen@redhat.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: icXNKDNXZba6RAqWd0M5KOXgx7686176AA= Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b=PU7GUp7H; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=redhat.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io 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 --- OvmfPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OvmfPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml b/OvmfPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml index b3b91aa84ea0..f7cba193d737 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()) -- 2.41.0 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#107536): https://edk2.groups.io/g/devel/message/107536 Mute This Topic: https://groups.io/mt/100524066/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-