diff mbox

[xen-4.3-testing,test] 66638: regressions - FAIL

Message ID 1451920110.13361.150.camel@citrix.com (mailing list archive)
State New, archived
Headers show

Commit Message

Ian Campbell Jan. 4, 2016, 3:08 p.m. UTC
On Mon, 2016-01-04 at 14:59 +0000, Ian Jackson wrote:
> Ian Campbell writes ("Re: [Xen-devel] [xen-4.3-testing test] 66638:
> regressions - FAIL"):
> > This is failing to build 4.2 (-prev job in a 4.3 branch), and I think
> > would
> > be fixed by a backport to that branch of:
> > 
> > commit 665ddd98c4d418ced6f303b79b7a6322c69b7247
> > Author: Olaf Hering <olaf@aepfle.de>
> > Date:   Thu Jun 27 16:56:18 2013 +0200
> 
> I think we should probably drop this job in the 4.3 branch (and
> earlier).  4.2 has had no commits since October - in particular, none
> of the recent security fixes - and I would be reluctant to give it a
> veneer of activity.

Now that you mention it, I thought I/we had done this already.

Ah, seems like I never actually posted the following. sorry.

8<------

From 3d4a13e90ece4a0b372dd16157e4c5a8b8300fc6 Mon Sep 17 00:00:00 2001
From: Ian Campbell <ian.campbell@citrix.com>
Date: Mon, 16 Nov 2015 10:24:50 +0000
Subject: [PATCH] Only test migrupgrade from 4.5 onwards

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
---
 mfi-common | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Ian Jackson Jan. 5, 2016, 5:39 p.m. UTC | #1
Ian Campbell writes ("Re: [Xen-devel] [xen-4.3-testing test] 66638: regressions - FAIL"):
> On Mon, 2016-01-04 at 14:59 +0000, Ian Jackson wrote:
> > I think we should probably drop this job in the 4.3 branch (and
> > earlier).  4.2 has had no commits since October - in particular, none
> > of the recent security fixes - and I would be reluctant to give it a
> > veneer of activity.
> 
> Now that you mention it, I thought I/we had done this already.
> 
> Ah, seems like I never actually posted the following. sorry.

Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>

Ian.
diff mbox

Patch

diff --git a/mfi-common b/mfi-common
index 0c0ca3f..b739c7d 100644
--- a/mfi-common
+++ b/mfi-common
@@ -45,6 +45,10 @@  branch_wants_migrupgrade_tests () {
   case "$branch" in
     xen-3.*-testing) return 1 ;;
     xen-4.0-testing) return 1 ;;
+    xen-4.1-testing) return 1 ;;
+    xen-4.2-testing) return 1 ;;
+    xen-4.3-testing) return 1 ;;
+    xen-4.4-testing) return 1 ;;
     xen-*) return 0;;
     *) return 1 ;;
   esac