All of lore.kernel.org
 help / color / mirror / Atom feed
* [OSSTEST PATCH] Drop build-*-oldkern
@ 2017-06-12 11:26 Wei Liu
  2017-06-12 11:31 ` Wei Liu
  0 siblings, 1 reply; 3+ messages in thread
From: Wei Liu @ 2017-06-12 11:26 UTC (permalink / raw)
  To: Xen-devel; +Cc: ian.jackson, Wei Liu

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(-)

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
 }
 
-- 
2.11.0


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [OSSTEST PATCH] Drop build-*-oldkern
  2017-06-12 11:26 [OSSTEST PATCH] Drop build-*-oldkern Wei Liu
@ 2017-06-12 11:31 ` Wei Liu
  2017-06-12 13:31   ` [OSSTEST PATCH] Drop build-*-oldkern [and 1 more messages] Ian Jackson
  0 siblings, 1 reply; 3+ messages in thread
From: Wei Liu @ 2017-06-12 11:31 UTC (permalink / raw)
  To: Xen-devel; +Cc: ian.jackson, Wei Liu

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


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [OSSTEST PATCH] Drop build-*-oldkern [and 1 more messages]
  2017-06-12 11:31 ` Wei Liu
@ 2017-06-12 13:31   ` Ian Jackson
  0 siblings, 0 replies; 3+ messages in thread
From: Ian Jackson @ 2017-06-12 13:31 UTC (permalink / raw)
  To: Wei Liu; +Cc: Xen-devel

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.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-06-12 13:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-12 11:26 [OSSTEST PATCH] Drop build-*-oldkern Wei Liu
2017-06-12 11:31 ` Wei Liu
2017-06-12 13:31   ` [OSSTEST PATCH] Drop build-*-oldkern [and 1 more messages] Ian Jackson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.