From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by mx.groups.io with SMTP id smtpd.web10.7036.1606313030278719332 for ; Wed, 25 Nov 2020 06:03:50 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=c4pGhIej; spf=pass (domain: redhat.com, ip: 63.128.21.124, mailfrom: lersek@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1606313029; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=bicmGUGUNZAdLGWeQtfW0IisGT/5M4/FG6mMubo3BTs=; b=c4pGhIejBz72OKSdtOJG4qgcMp07XTieq9M5sdKqj2w2XkvdGmwJBafmLrf4SFX7U3n41r ksgADH5Pa5PoKFVYcFMtLGjpOTmJ6rXrL4tZRoOSSDV1kp13G8QqL/wFE00ufur1gb9B3s cSw25PVhvrI3V27GGMznGEBoGnBQmDE= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-548-HNrg34swPGSef0gQ3wgIFQ-1; Wed, 25 Nov 2020 09:03:45 -0500 X-MC-Unique: HNrg34swPGSef0gQ3wgIFQ-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id DB207C73A1; Wed, 25 Nov 2020 14:03:43 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-115-177.ams2.redhat.com [10.36.115.177]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5D5735C1A3; Wed, 25 Nov 2020 14:03:42 +0000 (UTC) Subject: Re: [Patch][edk2-stable202011 3/3] OvmfPkg/PlatformCI/.azurepiplines: Use stable release of QEMU To: Michael D Kinney , devel@edk2.groups.io Cc: Sean Brogan , Bret Barkelew , Liming Gao , Jordan Justen , Ard Biesheuvel References: <20201125021137.1835-1-michael.d.kinney@intel.com> <20201125021137.1835-4-michael.d.kinney@intel.com> From: "Laszlo Ersek" Message-ID: Date: Wed, 25 Nov 2020 15:03:41 +0100 MIME-Version: 1.0 In-Reply-To: <20201125021137.1835-4-michael.d.kinney@intel.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=lersek@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit On 11/25/20 03:11, Michael D Kinney wrote: > Install the 2020.08.14 release of QEMU for Windows. > > The QEMU release from 2020.11.20 is installed into the incorrect > directory and is causing EDK II CI failures in the run to shell > step. > > Cc: Sean Brogan > Cc: Bret Barkelew > Cc: Liming Gao > Cc: Jordan Justen > Cc: Laszlo Ersek > Cc: Ard Biesheuvel > Signed-off-by: Michael D Kinney > --- > 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 02ed233fdb60..dd19fff50066 100644 > --- a/OvmfPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml > +++ b/OvmfPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml > @@ -132,7 +132,7 @@ jobs: > build_flags: $(Build.Flags) > run_flags: $(Run.Flags) > extra_install_step: > - - powershell: choco install qemu; Write-Host "##vso[task.prependpath]c:\Program Files\qemu" > + - powershell: choco install qemu --version=2020.08.14; 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()) > > Acked-by: Laszlo Ersek I agree this is eligible for edk2-stable202011. Thanks Laszlo