Is there a limit on log lines in travis build?

I can see that our Travis CI build jobs run until they write 10,000 lines, and then the build seems to stop no matter what phase the build is in.

Examples: - https://travis-ci.org/javaee-samples/javaee7-samples/jobs/64105164 - https://travis-ci.org/javaee-samples/javaee7-samples/jobs/63968004 - https: / /travis-ci.org/javaee-samples/javaee7-samples/jobs/63968003

I couldn't find anything about this limitation in the docs. Is there an undocumented limit on the number of lines you can log at build time?

+3


source to share


2 answers


The log limit on Travis CI is 4 MB. The only workaround seems to be a performance reduction.



https://twitter.com/travisci/status/174904509754118144

+7


source


This seems to be a JavaScript bug. In some situations, we can see the red message disappear saying

This log is too long to display. Please reduce the verbosity of your build or load



So webview only displays the first 10k lines of log output, and we need to load the log to see the full output.

0


source







All Articles