]> xenbits.xensource.com Git - people/liuw/osstest.git/commitdiff
mfi-common: Drop armhf build jobs on older linux-* branches
authorIan Campbell <ian.campbell@citrix.com>
Tue, 17 Nov 2015 17:13:43 +0000 (17:13 +0000)
committerIan Campbell <ian.campbell@citrix.com>
Mon, 30 Nov 2015 14:16:14 +0000 (14:16 +0000)
test_matrix_branch_filter_callback was recently updated to exclude
testing of linux-3.10 (54f237784d4b) and 3.14 (b0c5663a03e7), however
this only excludes test and not build jobs so we were still trying to
build the arm kernel there.

This changes the build job filtering to be in sync with the test job
filtering, the net result is to remove build-armhf* from linux-3.10
and linux-3.14.

A subsequent patch will try and combine those two filters into one to
prevent this skew happening again.

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
mfi-common

index 5fbe195941ff46e71b7506ea70e865d7fb9966ab..3463430d65936a8bfdfce7493d83a0127512a698 100644 (file)
@@ -94,6 +94,8 @@ create_build_jobs () {
       case "$branch" in
       linux-3.0) continue;;
       linux-3.4) continue;;
+      linux-3.10) continue;;
+      linux-3.14) continue;;
       linux-mingo-tip-master) continue;;
       linux-*) ;;
       qemu-upstream-4.2-testing) continue;;