googletest/travis.sh

26 lines
614 B
Bash
Raw Normal View History

2015-08-31 08:19:39 +02:00
#!/usr/bin/env sh
2015-08-31 15:54:37 +02:00
set -evx
# 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 08:19:39 +02:00
env | sort
2015-09-01 08:24:48 +02:00
mkdir build || true
cd build
2015-09-01 08:41:55 +02:00
cmake -Dgtest_build_samples=ON \
-Dgtest_build_tests=ON \
-Dgmock_build_tests=ON \
2015-09-08 00:23:25 +02:00
-DCMAKE_CXX_FLAGS=$CXX_FLAGS \
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
..
2015-08-31 16:29:11 +02:00
make
CTEST_OUTPUT_ON_FAILURE=1 make test