Browse Source

Silence Qt build on CI

Signed-off-by: falkTX <falktx@falktx.com>
tags/v1.0
falkTX 4 years ago
parent
commit
0b97cdafe5
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      build-qt.sh

+ 6
- 1
build-qt.sh View File

@@ -92,7 +92,12 @@ function build_qt_conf() {

if [ ! -f "${pkgdir}/.stamp_built" ]; then
pushd "${pkgdir}"
make ${MAKE_ARGS}
# NOTE: Qt win32 builds are very verbose, too many warnings, which makes CI build fail
if [ "${WIN32}" -eq 1 ] && [ -n "${TRAVIS_BUILD_DIR}" ]; then
make ${MAKE_ARGS} 1>/dev/null
else
make ${MAKE_ARGS}
fi
touch .stamp_built
popd
fi


Loading…
Cancel
Save