summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2018-07-02 13:47:20 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2018-07-03 13:06:52 +0000
commit4bfb2d7206a96a88ca317e9ca0509ac7095e5fd2 (patch)
tree8fafda47a9087c51203b14b00c1ca44a411d0165
parent87b733b1ff31a1fc90cb6dd3771cff7cb70822af (diff)
jenkins-helpers.sh: Update print_arch_for_label for d05/thx1
Support new labels for these new machines in print_arch_for_label. Change-Id: I594ade14e5946b51a7d4886b1b2b50f93c74a9e5
-rw-r--r--jenkins-helpers.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/jenkins-helpers.sh b/jenkins-helpers.sh
index a102ee68..87d25e13 100644
--- a/jenkins-helpers.sh
+++ b/jenkins-helpers.sh
@@ -61,8 +61,8 @@ print_arch_for_label ()
case $label in
tcwg-x86_64-*) echo amd64 ;;
tcwg-x86_32-*) echo i386 ;;
- tcwg-tx1_64-*|tcwg-apm_64-*) echo arm64 ;;
- tcwg-tk1_32-*|tcwg-tx1_32-*|tcwg-apm_32-*) echo armhf ;;
+ tcwg-tx1_64-*|tcwg-apm_64-*|tcwg-d05_64-*|tcwg-thx1_64-*) echo arm64 ;;
+ tcwg-tk1_32-*|tcwg-tx1_32-*|tcwg-apm_32-*|tcwg-d05_32-*) echo armhf ;;
*) echo "ERROR: Unsupported label: $label" >&2; exit 1 ;;
esac
)