From: Vincent Bernat Date: Fri, 5 Feb 2016 08:38:09 +0000 (+0100) Subject: travis: don't run distcheck on integration tests X-Git-Tag: 0.9.1~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8d25f699cef992814ba0dd05acae054b9059f65f;p=thirdparty%2Flldpd.git travis: don't run distcheck on integration tests --- diff --git a/.travis/run.sh b/.travis/run.sh index 096f3fe5..50c63c23 100755 --- a/.travis/run.sh +++ b/.travis/run.sh @@ -27,13 +27,14 @@ if [ x"${RUN_COVERITY}" = x"1" ]; then else # Regular build make all check CFLAGS=-Werror - make distcheck - if [ x"$TRAVIS_OS_NAME" = x"osx" ]; then - make -C osx pkg - fi - [ x"$RUN_INTEGRATION" != x"1" ] || { + if [ x"$RUN_INTEGRATION" = x"1" ]; then cd tests make integration-tests sh integration-tests - } + else + make distcheck + if [ x"$TRAVIS_OS_NAME" = x"osx" ]; then + make -C osx pkg + fi + fi fi