googletest/travis.sh

26 lines
614 B
Bash
Raw Normal View History

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