Revision fcdaa211e6127eeba69a121844e08aec67da2131 authored by Taylor Blau on 30 September 2022, 21:37:57 UTC, committed by Taylor Blau on 06 October 2022, 21:45:10 UTC
Signed-off-by: Taylor Blau <me@ttaylorr.com>
1 parent 58612f8
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
	;;
pedantic)
	dnf -yq update >/dev/null &&
	dnf -yq install make gcc findutils diffutils perl python3 gettext zlib-devel expat-devel openssl-devel curl-devel pcre2-devel >/dev/null
	;;
esac
back to top