summaryrefslogtreecommitdiff
path: root/infrastructure/travis-build.sh
blob: f4cd4ef4275c9dc84c586cba23766b89c3be7c78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e
set -x

ccache -s

cd `dirname $0`/..
./bootstrap
./configure CC="ccache $CC" CXX="ccache $CXX" "$@"
grep CXX config.status
make V=1
./runtest.pl ALL $TEST_TARGET

ccache -s