summaryrefslogtreecommitdiff
path: root/ci/run-linux32-build.sh
blob: c19c50c1c9a57c14c07ffe4f5a061bb764e51aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh
#
# Build and test Git in a 32-bit environment
#
# Usage:
#   run-linux32-build.sh [host-user-id]
#
 
set -x
 
# Update packages to the latest available versions
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
' &&
 
# If this script runs inside a docker container, then all commands are
# usually executed as root. Consequently, the host user might not be
# able to access the test output files.
# If a host user id is given, then create a user "ci" with the host user
# id to make everything accessible to the host user.
HOST_UID=$1 &&
CI_USER=$USER &&
test -z $HOST_UID || (CI_USER="ci" && useradd -u $HOST_UID $CI_USER) &&
 
# Build and test
linux32 --32bit i386 su -m -l $CI_USER -c '
    cd /usr/src/git &&
    ln -s /tmp/travis-cache/.prove t/.prove &&
    make --jobs=2 &&
    make --quiet test
'