2015-08-31 06:19:39 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
# This is called by `.travis.yml` via Travis CI.
|
|
|
|
# Travis supplies $TRAVIS_OS_NAME.
|
|
|
|
# http://docs.travis-ci.com/user/multi-os/
|
|
|
|
# Our .travis.yml also defines:
|
|
|
|
# - SHARED_LIB=ON/OFF
|
|
|
|
# - STATIC_LIB=ON/OFF
|
|
|
|
# - CMAKE_PKG=ON/OFF
|
|
|
|
# - BUILD_TYPE=release/debug
|
|
|
|
# - VERBOSE_MAKE=false/true
|
|
|
|
# - VERBOSE (set or not)
|
|
|
|
|
|
|
|
# -e: fail on error
|
|
|
|
# -v: show commands
|
|
|
|
# -x: show expanded commands
|
|
|
|
set -vex
|
|
|
|
|
|
|
|
env | sort
|
|
|
|
|
2015-08-31 06:58:45 +00:00
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake ../googletest
|
2015-08-31 06:19:39 +00:00
|
|
|
make
|
|
|
|
|
|
|
|
# Python is not available in Travis for osx.
|
|
|
|
# https://github.com/travis-ci/travis-ci/issues/2320
|
|
|
|
if [ "$TRAVIS_OS_NAME" != "osx" ]
|
|
|
|
then
|
|
|
|
make
|
|
|
|
# valgrind --error-exitcode=42 --leak-check=full ./src/test_lib_json/jsoncpp_test
|
|
|
|
fi
|