[Scummvm-git-logs] scummvm master -> 46e4a11a8886bc937f72f72ff18d7623d3865e09

digitall 547637+digitall at users.noreply.github.com
Fri Nov 22 15:08:21 UTC 2019


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
46e4a11a88 TRAVIS: Fix Build Reliability


Commit: 46e4a11a8886bc937f72f72ff18d7623d3865e09
    https://github.com/scummvm/scummvm/commit/46e4a11a8886bc937f72f72ff18d7623d3865e09
Author: D G Turner (digitall at scummvm.org)
Date: 2019-11-22T14:55:52Z

Commit Message:
TRAVIS: Fix Build Reliability

Travis CI will terminate builds if the log output exceeds around 4MB of
text output. With verbose build enabled, this causes the builds to
terminate.

We could try avoiding this by redirecting standard output from make to
/dev/null ... However, the build will then fail due to lack of output
in some cases. The limit for that seems to be around 10 minutes of build
time with other projects adding a background loop to provide output at
9 minute intervals to avoid this.

Changed paths:
    .travis.yml


diff --git a/.travis.yml b/.travis.yml
index 87e5e33..f81ef68 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -77,7 +77,7 @@ dist: xenial
 script:
   - ccache --show-stats > /tmp/ccache_before
   - export PATH="/usr/local/opt/ccache/libexec:/usr/lib/ccache:$PATH"
-  - ./configure --enable-all-engines --enable-opl2lpt --enable-verbose-build
+  - ./configure --enable-all-engines --enable-opl2lpt
   - make -j 2
   - make test
   - make devtools




More information about the Scummvm-git-logs mailing list