Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ci/lib.sh
diff options
context:
space:
mode:
authorĐoàn Trần Công Danh <congdanhqx@gmail.com>2020-04-04 04:08:50 +0300
committerJunio C Hamano <gitster@pobox.com>2020-04-06 23:44:42 +0300
commite0f8690dee7ec9373657eb2ecef9c8d88d0ece08 (patch)
treefa88264a796d7b32179ff93bc50366573f58f931 /ci/lib.sh
parentc3bc449eb1b8b458e812c07eb8d0cb643f3d1b36 (diff)
travis: build and test on Linux with musl libc and busybox
Signed-off-by: Đoàn Trần Công Danh <congdanhqx@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'ci/lib.sh')
-rwxr-xr-xci/lib.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/ci/lib.sh b/ci/lib.sh
index 8048335281..e9a5c51425 100755
--- a/ci/lib.sh
+++ b/ci/lib.sh
@@ -195,6 +195,11 @@ GIT_TEST_GETTEXT_POISON)
Linux32)
CC=gcc
;;
+linux-musl)
+ CC=gcc
+ MAKEFLAGS="$MAKEFLAGS PYTHON_PATH=/usr/bin/python3 USE_LIBPCRE2=Yes"
+ MAKEFLAGS="$MAKEFLAGS NO_REGEX=Yes ICONV_OMITS_BOM=Yes"
+ ;;
esac
MAKEFLAGS="$MAKEFLAGS CC=${CC:-cc}"