2015-08-31 06:19:39 +00:00
|
|
|
#!/usr/bin/env sh
|
2015-08-31 13:54:37 +00:00
|
|
|
set -evx
|
2017-09-04 16:19:06 +00:00
|
|
|
|
2017-12-24 15:34:56 +00:00
|
|
|
. ci/get-nprocessors.sh
|
|
|
|
|
2017-09-04 16:19:06 +00: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
|
2017-09-04 16:56:52 +00:00
|
|
|
NPROCESSORS=$(/usr/bin/getconf _NPROCESSORS_ONLN)
|
2017-09-04 16:19:06 +00:00
|
|
|
else
|
2017-09-04 16:56:52 +00:00
|
|
|
NPROCESSORS=2
|
2017-09-04 16:19:06 +00:00
|
|
|
fi
|
2017-09-04 16:56:52 +00:00
|
|
|
# as of 2017-09-04 Travis CI reports 32 processors, but GCC build
|
|
|
|
# crashes if parallelized too much (maybe memory consumption problem),
|
|
|
|
# so limit to 4 processors for the time being.
|
|
|
|
if [ $NPROCESSORS -gt 4 ] ; then
|
|
|
|
echo "$0:Note: Limiting processors to use by make from $NPROCESSORS to 4."
|
|
|
|
NPROCESSORS=4
|
|
|
|
fi
|
|
|
|
# Tell make to use the processors. No preceding '-' required.
|
|
|
|
MAKEFLAGS="j${NPROCESSORS}"
|
2017-09-04 16:19:06 +00:00
|
|
|
export MAKEFLAGS
|
|
|
|
|
2015-08-31 06:19:39 +00:00
|
|
|
env | sort
|
|
|
|
|
2015-09-01 06:24:48 +00:00
|
|
|
mkdir build || true
|
2017-08-29 15:41:26 +00:00
|
|
|
cd build
|
2015-09-01 06:41:55 +00:00
|
|
|
cmake -Dgtest_build_samples=ON \
|
|
|
|
-Dgtest_build_tests=ON \
|
|
|
|
-Dgmock_build_tests=ON \
|
2015-09-07 22:23:25 +00:00
|
|
|
-DCMAKE_CXX_FLAGS=$CXX_FLAGS \
|
2017-08-30 09:59:36 +00:00
|
|
|
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
|
2017-08-29 15:41:26 +00:00
|
|
|
..
|
2015-08-31 14:29:11 +00:00
|
|
|
make
|
2016-06-24 22:29:18 +00:00
|
|
|
CTEST_OUTPUT_ON_FAILURE=1 make test
|