зеркало из https://github.com/microsoft/git.git
23 строки
342 B
Bash
Executable File
23 строки
342 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
|
|
export GIT_TEST_SPLIT_INDEX=yes
|
|
export GIT_TEST_FULL_IN_PACK_ARRAY=true
|
|
export GIT_TEST_OE_SIZE=10
|
|
make --quiet test
|
|
fi
|
|
|
|
check_unignored_build_artifacts
|
|
|
|
save_good_tree
|