ci / run-build-and-tests.shon commit Merge branch 'jk/run-command-notdot' into maint (1bf5d99)
   1#!/bin/sh
   2#
   3# Build and test Git
   4#
   5
   6. ${0%/*}/lib-travisci.sh
   7
   8ln -s "$cache_dir/.prove" t/.prove
   9
  10make --jobs=2
  11make --quiet test
  12if test "$jobname" = "linux-gcc"
  13then
  14        export GIT_TEST_SPLIT_INDEX=yes
  15        export GIT_TEST_FULL_IN_PACK_ARRAY=true
  16        export GIT_TEST_OE_SIZE=10
  17        export GIT_TEST_OE_DELTA_SIZE=5
  18        make --quiet test
  19fi
  20
  21check_unignored_build_artifacts
  22
  23save_good_tree