Revision 82689d5e5d3f41da2ab1fbf9fbe7aacfd6da74c1 authored by Junio C Hamano on 13 December 2022, 12:04:03 UTC, committed by Junio C Hamano on 13 December 2022, 12:04:03 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 1612876
Raw File
install-docker-dependencies.sh
#!/bin/sh
#
# Install dependencies required to build and test Git inside container
#

case "$jobname" in
Linux32)
	linux32 --32bit i386 sh -c '
		apt update >/dev/null &&
		apt install -y build-essential libcurl4-openssl-dev \
			libssl-dev libexpat-dev gettext python >/dev/null
	'
	;;
linux-musl)
	apk add --update build-base curl-dev openssl-dev expat-dev gettext \
		pcre2-dev python3 musl-libintl perl-utils ncurses >/dev/null
	;;
esac
back to top