]> git.ipfire.org Git - thirdparty/git.git/commitdiff
ci/lib: fix "CI setup" sections with GitLab CI
authorPatrick Steinhardt <ps@pks.im>
Thu, 12 Dec 2024 06:47:17 +0000 (07:47 +0100)
committerJunio C Hamano <gitster@pobox.com>
Thu, 12 Dec 2024 07:57:21 +0000 (16:57 +0900)
Whenever we source "ci/lib.sh" we wrap the directives in a separate
group so that they can easily be collapsed in the web UI. And as we
source the script multiple times during a single CI run we thus end up
with the same section name reused multiple times, as well.

This is broken on GitLab CI though, where reusing the same group name is
not supported. The consequence is that only the last of these sections
can be collapsed.

Fix this issue by including the name of the sourcing script in the
group's name.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
ci/lib.sh

index 803f56bc821e3daa7daeba0c1769dbce0a7006e7..63c42fe93a0c632253f66490fd140137a8f2238f 100755 (executable)
--- a/ci/lib.sh
+++ b/ci/lib.sh
@@ -57,7 +57,7 @@ group () {
        return $res
 }
 
-begin_group "CI setup"
+begin_group "CI setup via $(basename $0)"
 
 # Set 'exit on error' for all CI scripts to let the caller know that
 # something went wrong.
@@ -388,5 +388,5 @@ esac
 
 MAKEFLAGS="$MAKEFLAGS CC=${CC:-cc}"
 
-end_group "CI setup"
+end_group "CI setup via $(basename $0)"
 set -x