summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2019-03-05 16:48:42 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2019-03-06 15:00:03 +0000
commit532a858fab12ed1e011c4a9e19461f19bf26f478 (patch)
tree4169811107ed876a6d177271b5457a95a029c2d2
parent2913f9f0aa2f3827f90c972eada22781c90fda7e (diff)
Use APM boards for cross-testing.
In print_tester_label_for_target(), do not use tk1/tx1 anymore, use APMs instead. However, this means we no longer use armv7 hardware to test arm-* configurations (as opposed to armv8l*). Change-Id: Iff08678c39ad15f59628e5a91f62d0812d0bb0b3
-rw-r--r--jenkins-helpers.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/jenkins-helpers.sh b/jenkins-helpers.sh
index 33218625..c9c90560 100644
--- a/jenkins-helpers.sh
+++ b/jenkins-helpers.sh
@@ -227,9 +227,12 @@ print_tester_label_for_target ()
# doesn't support KVM. Test on APM builders for now.
echo "tcwg-apm_64-build"
;;
- aarch64-linux*) echo "tcwg-tx1_64-test" ;;
- armv8l-linux*) echo "tcwg-tx1_32-test" ;;
- arm-linux*) echo "tcwg-tk1_32-test" ;;
+ # We allocate all TK1/TX1 boards to benchmarking, so use APMs
+ # for cross-testing. This means we no longer test on armv7
+ # hardware.
+ aarch64-linux*) echo "tcwg-apm_64-test" ;;
+ armv8l-linux*) echo "tcwg-apm_32-test" ;;
+ arm-linux*) echo "tcwg-apm_32-test" ;;
esac
)
}