Skip to content

Commit 412847c

Browse files
pks-tgitster
authored andcommitted
ci: group installation of Docker dependencies
The output of CI jobs tends to be quite long-winded and hard to digest. To help with this, many CI systems provide the ability to group output into collapsible sections, and we're also doing this in some of our scripts. One notable omission is the script to install Docker dependencies. Address it to bring more structure to the output for Docker-based jobs. Signed-off-by: Patrick Steinhardt <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent a7d499c commit 412847c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ci/install-docker-dependencies.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
# Install dependencies required to build and test Git inside container
44
#
55

6+
. ${0%/*}/lib.sh
7+
8+
begin_group "Install dependencies"
9+
610
case "$jobname" in
711
linux32)
812
linux32 --32bit i386 sh -c '
@@ -20,3 +24,5 @@ pedantic)
2024
dnf -yq install make gcc findutils diffutils perl python3 gettext zlib-devel expat-devel openssl-devel curl-devel pcre2-devel >/dev/null
2125
;;
2226
esac
27+
28+
end_group "Install dependencies"

0 commit comments

Comments
 (0)