blob: d3a094603f030752ccb8bd49dd5d855a3a10c36c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
#
# Build and test Git
#
. ${0%/*}/lib-travisci.sh
ln -s $HOME/travis-cache/.prove t/.prove
make --jobs=2
make --quiet test
check_unignored_build_artifacts
save_good_tree
|