798224a1c9
Travis updates. * sg/travis-linux32-sanity: travis-ci: don't fail if user already exists on 32 bit Linux build job travis-ci: don't run the test suite as root in the 32 bit Linux build travis-ci: don't repeat the path of the cache directory travis-ci: use 'set -e' in the 32 bit Linux build job travis-ci: use 'set -x' for the commands under 'su' in the 32 bit Linux build
19 lines
247 B
Bash
Executable File
19 lines
247 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Test Git
|
|
#
|
|
|
|
. ${0%/*}/lib-travisci.sh
|
|
|
|
ln -s "$cache_dir/.prove" t/.prove
|
|
|
|
make --quiet test
|
|
if test "$jobname" = "linux-gcc"
|
|
then
|
|
GIT_TEST_SPLIT_INDEX=YesPlease make --quiet test
|
|
fi
|
|
|
|
check_unignored_build_artifacts
|
|
|
|
save_good_tree
|