Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a limitation on the log lines in a travis build?

I can see our Travis CI build jobs running until they logged 10000 lines and then the build seems to be stopped, no matter in which phase the build currently is.

Samples: - 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 constraint in the docs. Is there some undocumented limitation of how many lines you can log during a build?

like image 588
Alex Heusingfeld Avatar asked Feb 10 '23 00:02

Alex Heusingfeld


1 Answers

The log limit on Travis CI is 4 MB. The only workaround seems to be to produce less output.

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

like image 129
Patrick Oscity Avatar answered Feb 12 '23 13:02

Patrick Oscity