summaryrefslogtreecommitdiff
path: root/jenkins-helpers.sh
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2019-05-13 15:00:00 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2019-05-14 13:48:00 +0000
commit7da4c37bf911157041df1a37f042431dff2c9db8 (patch)
treedd9eb92646279da200bba3c7d52890d8e17022da /jenkins-helpers.sh
parent284d538213b32e9e93a101357206250b70a59d26 (diff)
jenkins-helpers: print_arch_for_label: Sort labels for easier maintenance
Change-Id: I770158a3e1c7acc900093b8b722b36b2c220ebba
Diffstat (limited to 'jenkins-helpers.sh')
-rw-r--r--jenkins-helpers.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/jenkins-helpers.sh b/jenkins-helpers.sh
index 10aaee28..ed8d3cb6 100644
--- a/jenkins-helpers.sh
+++ b/jenkins-helpers.sh
@@ -124,8 +124,8 @@ 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-*|tcwg-lc_64*) echo arm64 ;;
- tcwg-tk1_32-*|tcwg-tx1_32-*|tcwg-apm_32-*|tcwg-d05_32-*|tcwg-sq_32-*) echo armhf ;;
+ tcwg-apm_64-*|tcwg-d05_64-*|tcwg-lc_64*|tcwg-sq_64-*|tcwg-thx1_64-*|tcwg-tx1_64-*) echo arm64 ;;
+ tcwg-apm_32-*|tcwg-d05_32-*|tcwg-sq_32-*|tcwg-tk1_32-*|tcwg-tx1_32-*) echo armhf ;;
*) echo "ERROR: Unsupported label: $label" >&2; exit 1 ;;
esac
)