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>
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;;