Commit a48c4e5e authored by Billy Donahue's avatar Billy Donahue
Browse files

cleanup travis.sh

parent e5c7bbae
#!/usr/bin/env sh #!/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 -evx set -evx
env | sort env | sort
mkdir build mkdir build
for d in googletest googlemock
( mkdir build/googletest && do
cd build/googletest && ( mkdir build/$d &&
cmake ../../googletest && cd build/$d &&
make) cmake ../../$d &&
( mkdir build/googlemock && make)
cd build/googlemock && done
cmake ../../googlemock &&
make)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment