aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/build-otp
AgeCommit message (Collapse)Author
2018-07-16travis: Only deploy in erlang/otpLukas Larsson
2018-06-20travis: Enable delivery of docsLukas Larsson
2018-06-18travis: Don't run docs deploy scriptLukas Larsson
Need to create a seperate repo first for this to push to.
2018-06-18Add deploy stage to travis-ciLukas Larsson
2018-05-22travis: Do release when building 32-bitLukas Larsson
This is done in order to check that installation works as it should.
2017-07-17Don't build or test plain emu in travis any moreLukas Larsson
2017-04-21erts: Deprecate the non-smp emulatorsLukas Larsson
2017-03-08Add docker images for building 32/64 bit erlangLukas Larsson
2017-03-07Travis CI: Avoid that builds gets killed for inactivityBjörn Gustavsson
Travis CI will kill build jobs that have not produced output for 10 minutes. The OTP build was never killed because of inactivity before 74796de9c7739 (which started to capture the output in a temporary file). After that commit, now and then a build would be killed because it did not finish in 10 minutes. Update the build script to periodically print a ".", but only if the size of the log file has changed. That way, if there is a real hanging during the build, Travis CI will still kill the build. Alternatives considered: Using travis_wait. Rejected because travis_wait will extend the build unconditonally, even if the build does not progress at all.
2017-02-08Reduce size of the log file for Travis CIBjörn Gustavsson
The huge log files are problematic. Add shell scripts that captures the log output to a temporary file and only display the log file if an error occurs.