travis.sh 289 Bytes
Newer Older
Billy Donahue's avatar
Billy Donahue committed
1
#!/usr/bin/env sh
Billy Donahue's avatar
Billy Donahue committed
2
set -evx
Billy Donahue's avatar
Billy Donahue committed
3
4
env | sort

Billy Donahue's avatar
Billy Donahue committed
5
mkdir build || true
Herbert Thielen's avatar
Herbert Thielen committed
6
cd build
Billy Donahue's avatar
Billy Donahue committed
7
8
9
cmake -Dgtest_build_samples=ON \
      -Dgtest_build_tests=ON \
      -Dgmock_build_tests=ON \
deki's avatar
deki committed
10
      -DCMAKE_CXX_FLAGS=$CXX_FLAGS \
11
      -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
Herbert Thielen's avatar
Herbert Thielen committed
12
      ..
13
make
14
CTEST_OUTPUT_ON_FAILURE=1 make test