[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [OSSTEST PATCH 2/5] make-flight: Drop arm64 with Linux before 4.10
The driver for the laxtons' network cards is not in 4.4 (and that's quite old). Our ThunderX's may even require something more recent but we will cross that bridge when we see it. Effect is to drop the following jobs: linux-4.1 *arm64* linux-4.4 *arm64* linux-4.9 *arm64* (Checked by eyeballing standalone-generate-dump-flight-runvars diff.) CC: Julien Grall <julien.grall@xxxxxxx> CC: Stefano Stabellini <sstabellini@xxxxxxxxxx> Signed-off-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> Acked-by: Julien Grall <julien.grall@xxxxxxx> --- make-flight | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/make-flight b/make-flight index f90fe77c..be620c6d 100755 --- a/make-flight +++ b/make-flight @@ -183,7 +183,7 @@ job_create_test_filter_callback () { arch_branch_filter_callback () { local arch=$1 case "$arch" in - arm*) + armhf) case "$branch" in linux-3.0) return 1;; linux-3.4) return 1;; @@ -191,6 +191,12 @@ arch_branch_filter_callback () { linux-3.14) return 1;; esac ;; + arm64) + case "$branch" in + linux-3.*) return 1;; + linux-4.?) return 1;; + esac + ;; esac case "$arch" in arm*) -- 2.11.0 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |