aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorEric Engestrom <eric@igalia.com>2024-01-31 07:57:58 +0000
committerMarge Bot <emma+marge@anholt.net>2024-02-01 22:10:09 +0000
commitb6d70eb09902842543793341e046e381a8e8208a (patch)
treecaf715d6d7bfc576c79f0585ad7c0bfbdc7d7f96 /.gitlab-ci.yml
parentb6fceeaa9f71aad2b0bdc17fc004317d8dbd07a7 (diff)
downloadmesa3d-b6d70eb09902842543793341e046e381a8e8208a.tar.gz
ci: reduce maximum image tags length from 30 to 20
To keep a margin in case we need to add something more in the future. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27379>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 93861e02a8b..2c959f17365 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -314,9 +314,9 @@ sanity:
)
for var in "${image_tags[@]}"
do
- if [ "$(echo -n "${!var}" | wc -c)" -gt 30 ]
+ if [ "$(echo -n "${!var}" | wc -c)" -gt 20 ]
then
- echo "$var is too long; please make sure it is at most 30 chars."
+ echo "$var is too long; please make sure it is at most 20 chars."
exit 1
fi
done