diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-04-07 22:16:30 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-04-07 22:16:30 -0700 |
commit | 54711243407791b188bf338e105cdc6d81ee4402 (patch) | |
tree | 25afcee788a5f7ce0151c98a18d91a5ac0aab142 /ci/run-linux32-docker.sh | |
parent | Merge branch 'dd/test-with-busybox' into HEAD (diff) | |
parent | travis: build and test on Linux with musl libc and busybox (diff) | |
download | tgif-54711243407791b188bf338e105cdc6d81ee4402.tar.xz |
Merge branch 'dd/ci-musl-libc' into HEAD
* dd/ci-musl-libc:
travis: build and test on Linux with musl libc and busybox
ci/linux32: libify install-dependencies step
ci: refactor docker runner script
ci/linux32: parameterise command to switch arch
ci/lib-docker: preserve required environment variables
ci: make MAKEFLAGS available inside the Docker container in the Linux32 job
Diffstat (limited to 'ci/run-linux32-docker.sh')
-rwxr-xr-x | ci/run-linux32-docker.sh | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/ci/run-linux32-docker.sh b/ci/run-linux32-docker.sh deleted file mode 100755 index 751acfcf8a..0000000000 --- a/ci/run-linux32-docker.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# -# Download and run Docker image to build and test 32-bit Git -# - -. ${0%/*}/lib.sh - -docker pull daald/ubuntu32:xenial - -# Use the following command to debug the docker build locally: -# $ docker run -itv "${PWD}:/usr/src/git" --entrypoint /bin/bash daald/ubuntu32:xenial -# root@container:/# /usr/src/git/ci/run-linux32-build.sh <host-user-id> - -container_cache_dir=/tmp/travis-cache - -docker run \ - --interactive \ - --env DEVELOPER \ - --env DEFAULT_TEST_TARGET \ - --env GIT_PROVE_OPTS \ - --env GIT_TEST_OPTS \ - --env GIT_TEST_CLONE_2GB \ - --env cache_dir="$container_cache_dir" \ - --volume "${PWD}:/usr/src/git" \ - --volume "$cache_dir:$container_cache_dir" \ - daald/ubuntu32:xenial \ - /usr/src/git/ci/run-linux32-build.sh $(id -u $USER) - -check_unignored_build_artifacts - -save_good_tree |