Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-11-26 | scripts/diffable: Optionally compile the Elixir standard library | Björn Gustavsson | |
If Elixir is installed along the the Erlang/OTP repository, produce diff-friendly output for the Elixir standard library. | |||
2018-10-23 | scripts/diffable: Correct the number of modules being compiled | Björn Gustavsson | |
2018-10-23 | scripts/diffable: Use the diffable compiler option | Björn Gustavsson | |
Now that the compiler has a `diffable` option, use it for a slight speed up. | |||
2018-10-23 | scripts/diffable: Refactor option parsing | Björn Gustavsson | |
2018-08-15 | Merge branch 'maint' | Lukas Larsson | |
2018-08-15 | travis: Make bundle version select regexp stricter | Lukas Larsson | |
2018-08-15 | Merge branch 'maint' | Lukas Larsson | |
2018-08-15 | travis: Filter out release candidates from bundle tags | Lukas Larsson | |
2018-07-16 | travis: Only deploy in erlang/otp | Lukas Larsson | |
2018-07-09 | Merge branch 'lukas/travis/fix-doc-deploy' of github.com:garazdawi/otp | Björn Gustavsson | |
* 'lukas/travis/fix-doc-deploy' of github.com:garazdawi/otp: travis: Only deploy in erlang/otp | |||
2018-07-07 | travis: Only deploy in erlang/otp | Lukas Larsson | |
2018-07-06 | diffable: Don't define VSN for the ssl app | Björn Gustavsson | |
2018-06-29 | pre-push: Add comment of how to do dry-run testing | Sverker Eriksson | |
2018-06-29 | pre-push: Make easier to add new OTP major releases | Sverker Eriksson | |
by just adding to NEW_RELEASES | |||
2018-06-26 | Update allowed tags in pre-push hook after OTP-21 release | John Högberg | |
2018-06-21 | Update pre-push hook after OTP-21 release | Sverker Eriksson | |
(same as 7d1b8752a7a0cd66de6b3625b3b1f7afccb6147a) | |||
2018-06-20 | travis: Enable delivery of docs | Lukas Larsson | |
2018-06-18 | travis: Don't run docs deploy script | Lukas Larsson | |
Need to create a seperate repo first for this to push to. | |||
2018-06-18 | Add deploy stage to travis-ci | Lukas Larsson | |
2018-05-22 | travis: Do release when building 32-bit | Lukas Larsson | |
This is done in order to check that installation works as it should. | |||
2018-05-04 | scripts/diffable: Include the hipe application | Björn Gustavsson | |
2018-04-11 | Add scripts/diffable | Björn Gustavsson | |
Run scripts/diffable without arguments to print a description and a few examples. | |||
2018-03-28 | inets,tftp: Break out TFTP from inets | Péter Dimitrov | |
- Create directory structure - Move code, tests, documentation from inets - Add inets_tftp_wrapper - Add tftp app to run-dialyzer script Change-Id: I6a142ae66cecb9a1821cbf9ea6a45f66a836763d | |||
2018-03-28 | ftp: Add ftp app to run-dialyzer script | Péter Dimitrov | |
Change-Id: Ie0a67ad22904ce9701f23bbf5573a182b4936790 | |||
2017-09-27 | Merge branch 'maint' | Sverker Eriksson | |
2017-09-27 | Add git pre-push hook | Sverker Eriksson | |
2017-09-01 | Merge branch 'maint' | Lukas Larsson | |
2017-09-01 | scripts: dialyze more applications in automation scripts | Lukas Larsson | |
2017-07-17 | Don't build or test plain emu in travis any more | Lukas Larsson | |
2017-04-21 | erts: Deprecate the non-smp emulators | Lukas Larsson | |
2017-04-20 | Move travis dialyzer logic to script file | Lukas Larsson | |
2017-03-08 | Run the smoke test for both SMP and non-SMP emulator | Björn Gustavsson | |
2017-03-08 | run-smoke-test: Let ERL_TOP default to current working directory | Björn Gustavsson | |
2017-03-08 | build-docker-otp: Avoid copying the git repository to docker daemon | Björn Gustavsson | |
Since docker is run from the top-level of the otp repository, the entire repository will be the context for the docker daemon. In my private repository, more than 800Mb had to be copied before the build could be started. Let the ./scripts directory be the context for docker instead. That way, only the otp.tar.gz file needs to be copied. While we are it, also use the ADD command in the Dockerfiles to pack up the tar file and avoid copying the tar file itself to the Docker image. | |||
2017-03-08 | builder-docker-otp: Fix passing of command | Björn Gustavsson | |
Pass all argument except the first as the command for "docker run". | |||
2017-03-08 | Reduce number of jobs for make | Björn Gustavsson | |
Running fewer jobs in parallel reduces the risk of running out of memory. | |||
2017-03-08 | Add docker images for building 32/64 bit erlang | Lukas Larsson | |
2017-03-07 | Travis CI: Avoid that builds gets killed for inactivity | Bjö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-08 | Reduce size of the log file for Travis CI | Bjö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. | |||
2016-12-12 | Make sure that Travis fails when test cases fail | Björn Gustavsson | |