summaryrefslogtreecommitdiff
path: root/jenkins-helpers.sh
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2019-05-13 14:57:10 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2019-05-14 13:47:52 +0000
commit284d538213b32e9e93a101357206250b70a59d26 (patch)
tree7ca799f227d02c64bcf62e6e36a2575a0eb8a9a0 /jenkins-helpers.sh
parent7e312cfe362815e98b640e5690dfdee2af71a2de (diff)
jenkins-helpers.sh: print_arch_for_label() Add support for tcwg-lc_64*
Change-Id: I586372c437f26b8a029e0b26b5a08d9401dca9fd
Diffstat (limited to 'jenkins-helpers.sh')
-rw-r--r--jenkins-helpers.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/jenkins-helpers.sh b/jenkins-helpers.sh
index 7003b3a7..10aaee28 100644
--- a/jenkins-helpers.sh
+++ b/jenkins-helpers.sh
@@ -124,7 +124,7 @@ print_arch_for_label ()
case $label in
tcwg-x86_64-*) echo amd64 ;;
tcwg-x86_32-*) echo i386 ;;
- tcwg-tx1_64-*|tcwg-apm_64-*|tcwg-d05_64-*|tcwg-sq_64-*|tcwg-thx1_64-*) echo arm64 ;;
+ tcwg-tx1_64-*|tcwg-apm_64-*|tcwg-d05_64-*|tcwg-sq_64-*|tcwg-thx1_64-*|tcwg-lc_64*) echo arm64 ;;
tcwg-tk1_32-*|tcwg-tx1_32-*|tcwg-apm_32-*|tcwg-d05_32-*|tcwg-sq_32-*) echo armhf ;;
*) echo "ERROR: Unsupported label: $label" >&2; exit 1 ;;
esac