From nobody Wed May 8 13:56:33 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org ARC-Seal: i=1; a=rsa-sha256; t=1555586866; cv=none; d=zoho.com; s=zohoarc; b=iz1flglQdRk+KyJsqCYrF+V3td4jNKRSBgT14cXQT8UtntYjKLNSnV+iVAK/oQvBzpGXkDC4YSo5aKS2CpO2nLkZEMhdVjARPAUC/Qp9ts34p1nP1phgGbEXXFpTeki8fFuDqAFF6y9pGPj3+FTMZ2aGhdwmppkZcQVEj08LDYI= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1555586866; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=zS4cfr5+yb3eqCdQoMdW7YpQFQiy1snmw5Sl7gSkUlg=; b=awiEpXgvJvg7EEJuq5ZOj2pDi0HUrUDmQqk/nk6Gkt5eM8lOF07Jd+PB7+fe4ewSkvI6oEU8/hML7Pvc+5FCVyiTUAdEem/wgHej5PV75Ngd9peirlUUSoaYuyh8gzs4iagpSq1FfLrfmrJcPbKpx4iz+bmJG132bJ/0t/qyp8Q= ARC-Authentication-Results: i=1; mx.zoho.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1555586866064232.73376804201814; Thu, 18 Apr 2019 04:27:46 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hH5BS-0000jK-II; Thu, 18 Apr 2019 11:26:26 +0000 Received: from us1-rack-dfw2.inumbo.com ([104.130.134.6]) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hH5BR-0000jF-CM for xen-devel@lists.xenproject.org; Thu, 18 Apr 2019 11:26:25 +0000 Received: from SMTP03.CITRIX.COM (unknown [162.221.156.55]) by us1-rack-dfw2.inumbo.com (Halon) with ESMTPS id cbf37f80-61cc-11e9-92d7-bc764e045a96; Thu, 18 Apr 2019 11:26:23 +0000 (UTC) X-Inumbo-ID: cbf37f80-61cc-11e9-92d7-bc764e045a96 X-IronPort-AV: E=Sophos;i="5.60,365,1549929600"; d="scan'208";a="83879865" From: Ian Jackson To: Date: Thu, 18 Apr 2019 12:26:18 +0100 Message-ID: <20190418112618.16706-1-ian.jackson@eu.citrix.com> X-Mailer: git-send-email 2.11.0 MIME-Version: 1.0 Subject: [Xen-devel] [OSSTEST PATCH] cr-daily-branch: ovmf: "usually" use xen-tested-master X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Anthony PERARD , Ian Jackson Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" This branch is supposed to be suitable for all versions of Xen. Conversely, older versions of OVMF do not build on newer compilers (as provided, eg, in stretch). So, for "branches" other than xen-unstable and xen-unstable-smoke, use the usual "determine_version" machinery, which will select xen-tested-master for branches other than the ovmf branch itself. No change for the ovmf "branch", nor for xen-unstable*. The effect is to switch xen-*-testing, qemu-*, linux-*, etc., to all use ovmf xen-tested-master. Verified with standalone-generate-dump-flight-runvars. In detail: In these flights: examine freebsd-master libvirt linux-* osstest qemu-* seabios xen-4.* xtf in these jobs build-amd64 build-arm64 build-armhf build-i386 change revision_ovmf to the output of ./ap-fetch-version-baseline ovmf tree_ovmf to git://xenbits.xen.org/osstest/ovmf.git (each being previously set to the empty string). CC: Anthony PERARD Signed-off-by: Ian Jackson Acked-by: Anthony PERARD --- cr-daily-branch | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/cr-daily-branch b/cr-daily-branch index 5698b083..00b713b3 100755 --- a/cr-daily-branch +++ b/cr-daily-branch @@ -204,14 +204,17 @@ if [ "x$REVISION_SEABIOS" =3D x ]; then fi fi if [ "x$REVISION_OVMF" =3D x ]; then - if [ "x$tree" =3D "xovmf" ]; then + case "$branch" in + xen-unstable*) + : REVISION_OVMF from Config.mk + ;; + *) TREE_OVMF=3D$TREE_OVMF_UPSTREAM export TREE_OVMF determine_version REVISION_OVMF ovmf OVMF export REVISION_OVMF - else - : REVISION_OVMF from Config.mk - fi + ;; + esac fi if [ "x$REVISION_LIBVIRT" =3D x ]; then case "$xenbranch" in --=20 2.11.0 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel