summaryrefslogtreecommitdiff
path: root/tcwg-update-llvmbot-containers.sh
diff options
context:
space:
mode:
authorDavid Spickett <david.spickett@linaro.org>2021-06-23 17:10:12 +0100
committerDavid Spickett <david.spickett@linaro.org>2021-06-23 17:10:12 +0100
commit28c69cfc4baca9d65dde9aeef2f3257647c656ef (patch)
tree73fca6fe978c7aa763ef8905cbba8170a62de20c /tcwg-update-llvmbot-containers.sh
parentd0384cef5d2e7508e0ecfe6b88f326a8b804dd49 (diff)
tcwg-update-llvmbot-containers: Correct patterns for choosing image type
Now we have "clang" in the names. (with the exception of libcxx) Change-Id: I1e0ee84ba81be74998e7f8bd7d63a94e25e70b3d
Diffstat (limited to 'tcwg-update-llvmbot-containers.sh')
-rwxr-xr-xtcwg-update-llvmbot-containers.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tcwg-update-llvmbot-containers.sh b/tcwg-update-llvmbot-containers.sh
index 5959c8a2..2eeb38a2 100755
--- a/tcwg-update-llvmbot-containers.sh
+++ b/tcwg-update-llvmbot-containers.sh
@@ -93,8 +93,8 @@ esac
for bot in "${bots[@]+${bots[@]}}"; do
case "$bot" in
- linaro-aarch64-*) arch="arm64" ;;
- linaro-arm*|linaro-tk1-*) arch="armhf" ;;
+ linaro-*aarch64-*) arch="arm64" ;;
+ linaro-*arm*|linaro-tk1-*) arch="armhf" ;;
*) echo "ERROR: Unknown bot: $bot"; exit 1 ;;
esac
image="linaro/ci-$arch-tcwg-llvmbot-ubuntu:$distro"