From 2a2a2127a4d94be13be9c5a87453c374f4198e57 Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Wed, 27 May 2026 16:52:15 +0200 Subject: [PATCH] ci: adjust time-trace.sh to not exceed the limit of 255 chars Signed-off-by: Samuel Pitoiset Part-of: --- .gitlab-ci/meson/time-strace.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/meson/time-strace.sh b/.gitlab-ci/meson/time-strace.sh index 53bfd6ac367..6c9019e3a13 100755 --- a/.gitlab-ci/meson/time-strace.sh +++ b/.gitlab-ci/meson/time-strace.sh @@ -2,7 +2,7 @@ # shellcheck disable=SC2086 # we want word splitting if [[ -z "$STRACEDIR" ]]; then - STRACEDIR=meson-logs/strace/$(for i in "$@"; do basename -z -- $i; echo -n _; done).$$ + STRACEDIR=meson-logs/strace/$(for i in "$@"; do basename -z -- $i; echo -n _; done | head -c100).$$ fi mkdir -p $STRACEDIR