From: Ian Campbell Date: Tue, 17 Nov 2015 17:13:43 +0000 (+0000) Subject: mfi-common: Drop armhf build jobs on older linux-* branches X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=74edf754c7c7e88f1b4d2caad50b49450eebf8e3;p=people%2Fliuw%2Fosstest.git mfi-common: Drop armhf build jobs on older linux-* branches 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 Acked-by: Ian Jackson --- diff --git a/mfi-common b/mfi-common index 5fbe195..3463430 100644 --- a/mfi-common +++ b/mfi-common @@ -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;;