From d67c0040058035088fd299f122cb37ba55c3256f Mon Sep 17 00:00:00 2001 From: Victor Seva Date: Thu, 16 Apr 2015 16:17:33 +0200 Subject: [PATCH] test/travis: add installation to the test - only for gcc. It seems to fail on travis with clang o_0 --- test/travis/build_travis.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/travis/build_travis.sh b/test/travis/build_travis.sh index 0bb04ca5349..04b4b2c6046 100755 --- a/test/travis/build_travis.sh +++ b/test/travis/build_travis.sh @@ -23,3 +23,9 @@ for grp in ${PACKAGE_GROUPS}; do done #echo "unit tests" #make -C test/unit +if [[ "$CC" =~ "gcc" ]] ; then + echo "make install" + sudo make install +else + echo "skip make install step" +fi