From 5cc3ede3e36f2e2291b9f030bc7f4bd5357dc5f6 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 9 May 2017 10:28:05 +0200 Subject: [PATCH] Hide the progress information in TravisCI. With progress information shown, the android build logs are bigger than 4Mo and travisBuild fails. So we have to hide them in travis. --- travis/compile_all.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/travis/compile_all.sh b/travis/compile_all.sh index 4f82e48..15ff10b 100755 --- a/travis/compile_all.sh +++ b/travis/compile_all.sh @@ -25,6 +25,7 @@ then ${TRAVIS_BUILD_DIR}/kiwix-build.py \ --target-platform $PLATFORM \ --build-deps-only \ + --hide-progress \ ${TARGET} rm ${BASE_DIR}/.install_packages_ok @@ -49,7 +50,7 @@ EOF scp -i ${SSH_KEY} ${ARCHIVE_NAME} nightlybot@download.kiwix.org:/var/www/tmp.kiwix.org/ci/ ) - ${TRAVIS_BUILD_DIR}/kiwix-build.py --target-platform $PLATFORM ${TARGET} + ${TRAVIS_BUILD_DIR}/kiwix-build.py --hide-progress --target-platform $PLATFORM ${TARGET} rm ${BASE_DIR}/.install_packages_ok done @@ -96,5 +97,6 @@ else fi ${TRAVIS_BUILD_DIR}/kiwix-build.py \ --target-platform $PLATFORM \ + --hide-progress \ ${TARGET} fi