From 299c34f0631bbd3fc79c0b066c81b781f211a5e0 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Thu, 19 Oct 2017 09:43:56 +0200 Subject: [PATCH] Update .travis.sh Remove dead code. --- .travis.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.sh b/.travis.sh index 9786c5321..b074f9af5 100755 --- a/.travis.sh +++ b/.travis.sh @@ -32,7 +32,7 @@ function generate() cmake -G "Unix Makefiles" $OPTIONS } - +# build and run unittests, if not android if [ $ANDROID ]; then ant -v -Dmy.dir=${TRAVIS_BUILD_DIR} -f ${TRAVIS_BUILD_DIR}/port/jassimp/build.xml ndk-jni fi @@ -41,7 +41,5 @@ if [ "$TRAVIS_OS_NAME" = "linux" ]; then && make -j4 \ && sudo make install \ && sudo ldconfig \ - && (cd test/unit; ../../bin/unit) \ - #&& (cd test/regression; chmod 755 run.py; ./run.py ../../bin/assimp; \ - # chmod 755 result_checker.py; ./result_checker.py) + && (cd test/unit; ../../bin/unit) fi