diff options
author | Đoàn Trần Công Danh <congdanhqx@gmail.com> | 2020-04-04 08:08:50 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-04-06 13:44:42 -0700 |
commit | e0f8690dee7ec9373657eb2ecef9c8d88d0ece08 (patch) | |
tree | fa88264a796d7b32179ff93bc50366573f58f931 /ci/install-docker-dependencies.sh | |
parent | ci/linux32: libify install-dependencies step (diff) | |
download | tgif-e0f8690dee7ec9373657eb2ecef9c8d88d0ece08.tar.xz |
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/install-docker-dependencies.sh')
-rwxr-xr-x | ci/install-docker-dependencies.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ci/install-docker-dependencies.sh b/ci/install-docker-dependencies.sh index a104c61d29..26a6689766 100755 --- a/ci/install-docker-dependencies.sh +++ b/ci/install-docker-dependencies.sh @@ -11,4 +11,8 @@ Linux32) libssl-dev libexpat-dev gettext python >/dev/null ' ;; +linux-musl) + apk add --update build-base curl-dev openssl-dev expat-dev gettext \ + pcre2-dev python3 musl-libintl perl-utils ncurses >/dev/null + ;; esac |