From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: [PATCH v2 2/2] cambridge: arrange to test each new baseline Date: Mon, 27 Jul 2015 11:55:04 +0100 Message-ID: <1437994504-10604-2-git-send-email-ian.campbell@citrix.com> References: <1437994504-10604-1-git-send-email-ian.campbell@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1437994504-10604-1-git-send-email-ian.campbell@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: ian.jackson@eu.citrix.com, xen-devel@lists.xen.org Cc: Ian Campbell List-Id: xen-devel@lists.xenproject.org Provide a new cr-daily-branch setting OSSTEST_BASELINES_ONLY which causes it to only attempt to test the current baseline (if it is untested) and never the tip version. Such tests will not result in any push. Add a cronjob to Cambridge which runs in this manner, ensuring that there will usually be some sort of reasonably up to date baseline for any given branch which can be used for comparisons in adhoc testing or bisections. This will also give us some data on the success of various branches on the set of machines in Cambridge, which can be useful/interesting. Signed-off-by: Ian Campbell Acked-by: Ian Jackson --- v2: Wording tweak. --- cr-daily-branch | 13 ++++++++++++- crontab-cambridge | 1 + 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/cr-daily-branch b/cr-daily-branch index 7e3e69e..ed8f8c0 100755 --- a/cr-daily-branch +++ b/cr-daily-branch @@ -85,7 +85,11 @@ check_tested () { "$@" } -if [ "x$OSSTEST_NO_BASELINE" != xy ] ; then +if [ "x$OSSTEST_BASELINES_ONLY" = xy ] ; then + force_baseline=baselines-only + wantpush=false + skipidentical=true +elif [ "x$OSSTEST_NO_BASELINE" != xy ] ; then testedflight=`check_tested --revision-$tree="$OLD_REVISION"` if [ "x$testedflight" = x ]; then @@ -258,6 +262,13 @@ any, is the most recent actually tested revision. END ;; + baselines-only) + #subject-prefix="[... ] " + cat >> $heading </dev/null -- 2.1.4