From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Jackson Subject: [OSSTEST PATCH 24/27] make-flight: mfi-common: Honour $global_runvars Date: Wed, 16 Sep 2015 14:35:27 +0100 Message-ID: <1442410530-9665-25-git-send-email-ian.jackson@eu.citrix.com> References: <1442410530-9665-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.bemta3.messagelabs.com ([195.245.230.39]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1ZcCsT-0000pS-5b for xen-devel@lists.xenproject.org; Wed, 16 Sep 2015 13:36:01 +0000 In-Reply-To: <1442410530-9665-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 Provide a way for the main script to set some runvars on all jobs. We expect this to be mostly set with +=. Signed-off-by: Ian Jackson --- mfi-common | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mfi-common b/mfi-common index 6ffa9e6..1ef4f26 100644 --- a/mfi-common +++ b/mfi-common @@ -69,7 +69,7 @@ job_create_build () { local job=$1; shift local recipe=$1; shift - ./cs-job-create $flight $job $recipe "$@" + ./cs-job-create $flight $job $recipe $global_runvars "$@" } create_build_jobs () { @@ -344,7 +344,7 @@ job_create_test () { esac ./cs-job-create $flight $job $recipe toolstack=$toolstack \ - $RUNVARS $TEST_RUNVARS $most_runvars \ + $RUNVARS $TEST_RUNVARS $global_runvars $most_runvars \ xenbuildjob=$xenbuildjob buildjob=$buildjob $tsbuildjob "$@" } -- 1.7.10.4