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.7173.1606313504088102858 for ; Wed, 25 Nov 2020 06:11:44 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=JwYojoUI; 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=1606313503; 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=KJd1ZnT8kSuUm8z1qXWiVnP/jS/8HNJCqvtLbCZVT88=; b=JwYojoUICQQH/JlJM4srLz3/J+90mWQQObN3/TrVhmnPS9d9ZF/3ode91ks1xGgVPkef6o L0vVq0vNwZDJ2siQi8UhRECtp1uQCxy0cgZ9YtG+Er+LbI9FzHT863IV23zWolJMx/NjOd 0gUyu9dZfsxqit5mnom8CNFJqF14qy0= 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-520-7QcDTnMHMyiK4WU5esdvjg-1; Wed, 25 Nov 2020 09:11:39 -0500 X-MC-Unique: 7QcDTnMHMyiK4WU5esdvjg-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id B0F651012E84; Wed, 25 Nov 2020 14:11:37 +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 E05625D9CA; Wed, 25 Nov 2020 14:11:35 +0000 (UTC) Subject: Re: [Patch v2][edk2-stable202011 3/4] 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: <20201125050758.1507-1-michael.d.kinney@intel.com> <20201125050758.1507-4-michael.d.kinney@intel.com> From: "Laszlo Ersek" Message-ID: Date: Wed, 25 Nov 2020 15:11:34 +0100 MIME-Version: 1.0 In-Reply-To: <20201125050758.1507-4-michael.d.kinney@intel.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 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 06:07, 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