diff mbox

[OSSTEST] Drop build-*-oldkern

Message ID 20170612112636.26613-1-wei.liu2@citrix.com (mailing list archive)
State New, archived
Headers show

Commit Message

Wei Liu June 12, 2017, 11:26 a.m. UTC
That is for testing the in-xen.git kernel build machinery which we
surely don't care about anymore.

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
 cr-daily-branch     |  5 -----
 make-distros-flight |  2 +-
 make-hosts-flight   |  2 +-
 mfi-common          | 13 -------------
 4 files changed, 2 insertions(+), 20 deletions(-)

Comments

Wei Liu June 12, 2017, 11:31 a.m. UTC | #1
And the runvar changes:

--- ../osstest-master-runvars   2017-06-06 14:38:00.480138417 +0100
+++ ../osstest-new-runvars      2017-06-06 14:41:24.134725010 +0100
-xen-unstable               build-amd64-oldkern                                   all_host_di_version     current
-xen-unstable               build-amd64-oldkern                                   all_host_suite          wheezy
-xen-unstable               build-amd64-oldkern                                   arch                    amd64
-xen-unstable               build-amd64-oldkern                                   build_lvextend_max      50
-xen-unstable               build-amd64-oldkern                                   host_hostflags          share-build-wheezy-amd64,arch-amd64,suite-wheezy,pur
-xen-unstable               build-amd64-oldkern                                   kconfighow              create-config-sh
-xen-unstable               build-amd64-oldkern                                   kimagefile              vmlinux
-xen-unstable               build-amd64-oldkern                                   revision_linux
-xen-unstable               build-amd64-oldkern                                   tree_linux              http://xenbits.xen.org/linux-2.6.18-xen.hg
-xen-unstable               build-i386-oldkern                                    all_host_di_version     current
-xen-unstable               build-i386-oldkern                                    all_host_suite          wheezy
-xen-unstable               build-i386-oldkern                                    arch                    i386
-xen-unstable               build-i386-oldkern                                    build_lvextend_max      50
-xen-unstable               build-i386-oldkern                                    host_hostflags          share-build-wheezy-i386,arch-i386,suite-wheezy,purpo
-xen-unstable               build-i386-oldkern                                    kconfighow              create-config-sh
-xen-unstable               build-i386-oldkern                                    kimagefile              vmlinux
-xen-unstable               build-i386-oldkern                                    revision_linux
-xen-unstable               build-i386-oldkern                                    tree_linux              http://xenbits.xen.org/linux-2.6.18-xen.hg
Ian Jackson June 12, 2017, 1:31 p.m. UTC | #2
Wei Liu writes ("[OSSTEST PATCH] Drop build-*-oldkern"):
> That is for testing the in-xen.git kernel build machinery which we
> surely don't care about anymore.

Thanks.  I will push this in a moment.

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

Wei Liu writes ("Re: [OSSTEST PATCH] Drop build-*-oldkern"):
> And the runvar changes:

Thanks,
Ian.
diff mbox

Patch

diff --git a/cr-daily-branch b/cr-daily-branch
index 8a314ce..39483cd 100755
--- a/cr-daily-branch
+++ b/cr-daily-branch
@@ -208,10 +208,6 @@  if [ "x$REVISION_LINUXFIRMWARE" = x ]; then
         export REVISION_LINUXFIRMWARE
 fi
 
-if [ "x$branch" != "xxen-unstable" ]; then
-        export REVISION_LINUX_OLD=disable
-fi
-
 case "$tree" in
 xen)
         realtree=$xenbranch
@@ -245,7 +241,6 @@  libvirt)
 rumprun)
 	realtree=rumprun
 	NEW_REVISION=$REVISION_RUMPRUN
-	export REVISION_LINUX_OLD=disable
 	export REVISION_LIBVIRT=disable
 	;;
 seabios)
diff --git a/make-distros-flight b/make-distros-flight
index 8ab00b1..406d7d6 100755
--- a/make-distros-flight
+++ b/make-distros-flight
@@ -191,7 +191,7 @@  test_matrix_do_one () {
 
 if [ x$buildflight = x ]; then
 
-  WANT_XEND=false REVISION_LINUX_OLD=disable
+  WANT_XEND=false
 
   create_build_jobs
 
diff --git a/make-hosts-flight b/make-hosts-flight
index d619de6..0152dfe 100755
--- a/make-hosts-flight
+++ b/make-hosts-flight
@@ -95,7 +95,7 @@  hosts_iterate () {
 
 if [ x$buildflight = x ]; then
 
-  WANT_XEND=false REVISION_LINUX_OLD=disable
+  WANT_XEND=false
 
   create_build_jobs
 
diff --git a/mfi-common b/mfi-common
index ec31e2e..94f088b 100644
--- a/mfi-common
+++ b/mfi-common
@@ -329,19 +329,6 @@  create_build_jobs () {
     arm*) continue;; # don't do any other kernel builds
     esac
 
-    if [ "x$REVISION_LINUX_OLD" != xdisable ]; then
-
-      job_create_build build-$arch-oldkern build-kern                   \
-                arch=$arch kconfighow=create-config-sh                  \
-                kimagefile=vmlinux                                      \
-                $RUNVARS $BUILD_RUNVARS $BUILD_LINUX_OLD_RUNVARS        \
-                $arch_runvars $hostos_runvars                           \
-                host_hostflags=$build_hostflags                         \
-        tree_linux=http://xenbits.xen.org/linux-2.6.18-xen.hg           \
-        revision_linux=$REVISION_LINUX_OLD
-
-    fi
-
   done
 }