From 8d25f699cef992814ba0dd05acae054b9059f65f Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Fri, 5 Feb 2016 09:38:09 +0100 Subject: [PATCH] travis: don't run distcheck on integration tests --- .travis/run.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) 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 -- 2.39.5