]> git.ipfire.org Git - thirdparty/git.git/blame - ci/install-docker-dependencies.sh
Merge branch 'jt/t5500-unflake'
[thirdparty/git.git] / ci / install-docker-dependencies.sh
CommitLineData
c3bc449e
ĐTCD
1#!/bin/sh
2#
3# Install dependencies required to build and test Git inside container
4#
5
6case "$jobname" in
7Linux32)
8 linux32 --32bit i386 sh -c '
9 apt update >/dev/null &&
10 apt install -y build-essential libcurl4-openssl-dev \
11 libssl-dev libexpat-dev gettext python >/dev/null
12 '
13 ;;
e0f8690d
ĐTCD
14linux-musl)
15 apk add --update build-base curl-dev openssl-dev expat-dev gettext \
16 pcre2-dev python3 musl-libintl perl-utils ncurses >/dev/null
17 ;;
c3bc449e 18esac