Age | Commit message (Collapse) | Author |
|
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.
|
|
|
|
|
|
Trusty, Ubuntu 14.04 LTS has reached end of standard support in April
2019. It is replaced in Travis job with Xenial, 16.04 LTS release with
support until April 2021.
|
|
There is an issue with SCUMMVM_REVISION being added to all objects,
rather than just base/version.o so this is for debugging this and
generally just improved verbosity for CI debugging.
|
|
Based on https://stackoverflow.com/a/53331571
|
|
* TRAVIS: Don't build with gcc on Mac OS X
gcc on Mac OS X is just a frontend for LLVM.
* TRAVIS: Fix building with clang on Linux
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The macOS build machines on Travis CI are failing constantly, and
for the time they've been enabled, they haven't really proven to
give any benefit. So, turning them off now, at least until Travis
CI gets more reliable so we are not contantly notified about their
broken build machines.
|
|
|
|
I expect this to fail at the first run.
|
|
|
|
Travis builds are failing randomly after this change due to
upstream bug travis-ci/travis-ci#7103, so reverting these changes
until it is fixed.
This reverts commit 72f421cb38149d9a66d7145609be81cec2514d48, reversing
changes made to c919c9996c6f62cf4f0d1a22d0522b0ee9a0514c.
|
|
container-based infrastructure (by sudo: false) starts and runs
faster:
https://docs.travis-ci.com/user/migrating-from-legacy/
gcc and make are preinstalled by Travis-CI for C++ language
containers, so do not need to be listed as dependencies:
https://docs.travis-ci.com/user/trusty-ci-environment/#Compilers-%26-Build-toolchain
ccache caching prevents wasting time rebuilding unchanged code:
https://docs.travis-ci.com/user/caching#ccache-cache
|
|
|
|
|
|
Tests now build fine with the event recorder enabled
|
|
|
|
compatible with it
|
|
|