15 lines
292 B
Bash
15 lines
292 B
Bash
|
#!/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
|
||
|
'
|
||
|
;;
|
||
|
esac
|