repo.or.cz
/
git
/
debian.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ci/linux32: libify install-dependencies step
[git/debian.git]
/
ci
/
install-docker-dependencies.sh
blob
a104c61d2925d33904b323168b1da2f31eeefda2
1
#!/bin/sh
2
#
3
# Install dependencies required to build and test Git inside container
4
#
5
6
case
"
$jobname
"
in
7
Linux32
)
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
;;
14
esac