mirror of
https://github.com/git/git.git
synced 2024-12-04 15:34:05 +08:00
4c2db93807
While at there, document about this special mode when running the test suite. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
20 lines
265 B
Bash
Executable File
20 lines
265 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Build and test Git
|
|
#
|
|
|
|
. ${0%/*}/lib-travisci.sh
|
|
|
|
ln -s "$cache_dir/.prove" t/.prove
|
|
|
|
make --jobs=2
|
|
make --quiet test
|
|
if test "$jobname" = "linux-gcc"
|
|
then
|
|
GIT_TEST_SPLIT_INDEX=yes make --quiet test
|
|
fi
|
|
|
|
check_unignored_build_artifacts
|
|
|
|
save_good_tree
|