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.
This commit is contained in:
Matthieu Gautier
2017-05-09 10:28:05 +02:00
parent c42883753a
commit 5cc3ede3e3

View File

@ -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