2015-08-31 02:19:39 -04:00
|
|
|
#!/usr/bin/env sh
|
2015-08-31 09:54:37 -04:00
|
|
|
set -evx
|
2017-09-04 18:19:06 +02:00
|
|
|
|
|
|
|
# if possible, ask for the precise number of processors,
|
|
|
|
# otherwise take 2 processors as reasonable default; see
|
|
|
|
# https://docs.travis-ci.com/user/speeding-up-the-build/#Makefile-optimization
|
|
|
|
if [ -x /usr/bin/getconf ]; then
|
|
|
|
MAKEFLAGS=j$(/usr/bin/getconf _NPROCESSORS_ONLN)
|
|
|
|
else
|
|
|
|
MAKEFLAGS="j2"
|
|
|
|
fi
|
|
|
|
export MAKEFLAGS
|
|
|
|
|
2015-08-31 02:19:39 -04:00
|
|
|
env | sort
|
|
|
|
|
2015-09-01 02:24:48 -04:00
|
|
|
mkdir build || true
|
2017-08-29 17:41:26 +02:00
|
|
|
cd build
|
2015-09-01 02:41:55 -04:00
|
|
|
cmake -Dgtest_build_samples=ON \
|
|
|
|
-Dgtest_build_tests=ON \
|
|
|
|
-Dgmock_build_tests=ON \
|
2015-09-07 18:23:25 -04:00
|
|
|
-DCMAKE_CXX_FLAGS=$CXX_FLAGS \
|
2017-08-30 11:59:36 +02:00
|
|
|
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
|
2017-08-29 17:41:26 +02:00
|
|
|
..
|
2015-08-31 10:29:11 -04:00
|
|
|
make
|
2016-06-25 01:29:18 +03:00
|
|
|
CTEST_OUTPUT_ON_FAILURE=1 make test
|