summaryrefslogtreecommitdiff
path: root/scripts/build-otp
Commit message (Collapse)AuthorAgeFilesLines
* scripts/build-otp: Enable compile server for Travis/Jenkins buildsBjörn Gustavsson2019-08-261-0/+1
|
* Print last lines of configure logDan Gudmundsson2019-08-071-0/+2
| | | | | So we can see in travis which applications or options that is disabled, (and/or other config problems)
* travis: Only deploy in erlang/otpLukas Larsson2018-07-071-1/+1
|
* travis: Enable delivery of docsLukas Larsson2018-06-201-17/+17
|
* travis: Don't run docs deploy scriptLukas Larsson2018-06-181-17/+17
| | | | Need to create a seperate repo first for this to push to.
* Add deploy stage to travis-ciLukas Larsson2018-06-181-7/+39
|
* travis: Do release when building 32-bitLukas Larsson2018-05-221-0/+4
| | | | | This is done in order to check that installation works as it should.
* Don't build or test plain emu in travis any moreLukas Larsson2017-07-171-1/+1
|
* erts: Deprecate the non-smp emulatorsLukas Larsson2017-04-211-1/+1
|
* Add docker images for building 32/64 bit erlangLukas Larsson2017-03-081-1/+5
|
* Travis CI: Avoid that builds gets killed for inactivityBjörn Gustavsson2017-03-071-3/+22
| | | | | | | | | | | | | | | | | | 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.
* Reduce size of the log file for Travis CIBjörn Gustavsson2017-02-081-0/+20
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.