mirror of
https://github.com/git/git.git
synced 2026-08-09 09:34:14 +00:00
Some of our 'ci/*' scripts repeat the name or full path of the Travis CI cache directory, and the following patches will add new places using that path. Use a variable to refer to the path of the cache directory instead, so it's hard-coded only in a single place. Pay extra attention to the 32 bit Linux build: it runs in a Docker container, so pass the path of the cache directory from the host to the container in an environment variable. Note that an environment variable passed this way is exported inside the container, therefore its value is directly available in the 'su' snippet even though that snippet is single quoted. Furthermore, use the variable in the container only if it's been assigned a non-empty value, to prevent errors when someone is running or debugging the Docker build locally, because in that case the variable won't be set as there won't be any Travis CI cache. Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
35 lines
926 B
Bash
Executable File
35 lines
926 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Build and test Git in a 32-bit environment
|
|
#
|
|
# Usage:
|
|
# run-linux32-build.sh [host-user-id]
|
|
#
|
|
|
|
set -ex
|
|
|
|
# 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 '
|
|
set -ex
|
|
cd /usr/src/git
|
|
test -n "$cache_dir" && ln -s "$cache_dir/.prove" t/.prove
|
|
make --jobs=2
|
|
make --quiet test
|
|
'
|