git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
blob f173c9cf2a63d8e88c8f08f27c6e5572875b8666 928 bytes (raw)
name: ci/run-linux32-build.sh 	 # note: path name is non-authoritative(*)

 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
 
#!/bin/sh
#
# Build and test Git in a 32-bit environment
#
# Usage:
#   run-linux32-build.sh [host-user-id]
#

# 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 &&
    make --jobs=2 &&
    make --quiet test
    GIT_TEST_SPLIT_INDEX=YesPlease make --quiet test
'

debug log:

solving f173c9cf2a ...
found f173c9cf2a in https://public-inbox.org/git/20171217225122.28941-4-t.gummerer@gmail.com/ ||
	https://public-inbox.org/git/20171217225122.28941-1-t.gummerer@gmail.com/
found e30fb2cddc in https://80x24.org/mirrors/git.git
preparing index
index prepared:
100755 e30fb2cddcb59821a90a5c77496664b9a3609113	ci/run-linux32-build.sh

applying [1/1] https://public-inbox.org/git/20171217225122.28941-4-t.gummerer@gmail.com/
diff --git a/ci/run-linux32-build.sh b/ci/run-linux32-build.sh
index e30fb2cddc..f173c9cf2a 100755

Checking patch ci/run-linux32-build.sh...
Applied patch ci/run-linux32-build.sh cleanly.

skipping https://public-inbox.org/git/20171217225122.28941-1-t.gummerer@gmail.com/ for f173c9cf2a
index at:
100755 f173c9cf2a63d8e88c8f08f27c6e5572875b8666	ci/run-linux32-build.sh

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).