summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@foss.st.com>2021-08-04 08:48:43 +0000
committerChristophe Lyon <christophe.lyon@foss.st.com>2021-08-04 08:48:43 +0000
commit472b7c0bea45f5932d2b2111c9b6c340cc96adf1 (patch)
tree612647ffdb14a994c2ea5fe839e1cbdde70202f2
parent24999566ca3f85e46379c72e889384ab4541d2da (diff)
print_arch_for_label: Add support for tcwg-armv8_32 and tcwg-armv8_64
Change-Id: I28f86ab1626beefe8a237da464640ccf9ef830a4
-rw-r--r--jenkins-helpers.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/jenkins-helpers.sh b/jenkins-helpers.sh
index 771ace4b..f862a4ab 100644
--- a/jenkins-helpers.sh
+++ b/jenkins-helpers.sh
@@ -153,8 +153,8 @@ print_arch_for_label ()
case $label in
tcwg-x86_64-*) echo amd64 ;;
tcwg-x86_32-*) echo i386 ;;
- tcwg-amp_64-*|tcwg-apm_64-*|tcwg-d05_64-*|tcwg-lc_64*|tcwg-sq_64-*|tcwg-thx1_64-*|tcwg-tx1_64-*) echo arm64 ;;
- tcwg-amp_32-*|tcwg-apm_32-*|tcwg-d05_32-*|tcwg-sq_32-*|tcwg-tk1_32-*|tcwg-tx1_32-*) echo armhf ;;
+ tcwg-amp_64-*|tcwg-apm_64-*|tcwg-armv8_64|tcwg-d05_64-*|tcwg-lc_64*|tcwg-sq_64-*|tcwg-thx1_64-*|tcwg-tx1_64-*) echo arm64 ;;
+ tcwg-amp_32-*|tcwg-apm_32-*|tcwg-armv8_32|tcwg-d05_32-*|tcwg-sq_32-*|tcwg-tk1_32-*|tcwg-tx1_32-*) echo armhf ;;
*) echo "ERROR: Unsupported label: $label" >&2; exit 1 ;;
esac
)