From fd612c0f5f2f1cf26a77e7fe26f5174b15f5ce0a Mon Sep 17 00:00:00 2001 From: fpagliughi Date: Sun, 28 Jul 2019 15:59:55 -0400 Subject: [PATCH] Added some diagnostics to Travis build --- travis_build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/travis_build.sh b/travis_build.sh index 135670b..6018c83 100755 --- a/travis_build.sh +++ b/travis_build.sh @@ -1,6 +1,6 @@ #!/bin/bash -set -e +set -ex if [ "$TRAVIS_OS_NAME" == "linux" ]; then @@ -8,7 +8,7 @@ if [ "$TRAVIS_OS_NAME" == "linux" ]; then COMPILER=g++; fi - echo "travis build dir $TRAVIS_BUILD_DIR pwd $PWD" + echo "Travis build dir: $TRAVIS_BUILD_DIR, pwd: $PWD" rm -rf build/ cmake -Bbuild -H. -DCMAKE_CXX_COMPILER=$COMPILER -DPAHO_BUILD_SAMPLES=ON -DPAHO_BUILD_STATIC=ON -DPAHO_BUILD_DOCUMENTATION=OFF -DPAHO_WITH_SSL=OFF