From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Jackson Subject: [OSSTEST PATCH 10/13] mfi-common: Honour REVISION_LIBVIRT=disable Date: Fri, 16 May 2014 19:01:37 +0100 Message-ID: <1400263300-22903-11-git-send-email-ian.jackson@eu.citrix.com> References: <1400263300-22903-1-git-send-email-ian.jackson@eu.citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta4.messagelabs.com ([85.158.143.247]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1WlMSg-0002F3-PN for xen-devel@lists.xenproject.org; Fri, 16 May 2014 18:02:26 +0000 In-Reply-To: <1400263300-22903-1-git-send-email-ian.jackson@eu.citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xenproject.org Cc: Ian Jackson , Ian Campbell List-Id: xen-devel@lists.xenproject.org This makes it possible for (for example) cr-daily-branch to disable the libvirt build, when it is not needed. Signed-off-by: Ian Jackson --- mfi-common | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mfi-common b/mfi-common index 235575e..ae42637 100644 --- a/mfi-common +++ b/mfi-common @@ -162,6 +162,8 @@ create_build_jobs () { tree_linuxfirmware=$TREE_LINUXFIRMWARE \ revision_linuxfirmware=$REVISION_LINUXFIRMWARE + if [ "x$REVISION_LIBVIRT" != xdisable ]; then + ./cs-job-create $flight build-$arch-libvirt build-libvirt \ arch=$arch \ tree_xen=$TREE_XEN \ @@ -174,6 +176,8 @@ create_build_jobs () { tree_gnulib_libvirt=$TREE_GNULIB_LIBVIRT revision_gnulib_libvirt=$REVISION_GNULIB_LIBVIRT\ ${TREEVCS_GNULIB_LIBVIRT:+treevcs_gnulib_libvirt=}${TREEVCS_GNULIB_LIBVIRT} + fi + case "$arch" in armhf) continue;; # don't do any other kernel builds esac -- 1.7.10.4