Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-11-27 | Don't use the non-portable flock -c, use flock sh -c | Loïc Hoguin | |
2018-11-27 | Fix jobserver unavailable warnings | Loïc Hoguin | |
When the $(MAKE) is inside an $(eval $(call ...)) then it needs to be escaped as $$(MAKE). When the $(MAKE) is inside a $(call ...) then I did not figure out a way other than passing it as an argument. When the $(MAKE) is inside many levels of $(call $(call ...)) it's easier to avoid it if at all possible, so I replaced the rebar $(MAKE) call with ./bootstrap. I confirmed it works fine on Windows as well. | |||
2018-11-26 | Allow running test cases without groups in CT | Loïc Hoguin | |
2018-11-26 | Remove a non-portable "echo -n" from a test | Loïc Hoguin | |
2018-11-26 | Remove some non-portable "echo -e" from a couple tests | Loïc Hoguin | |
2018-11-26 | Rename render_template to core_render and move into core | Loïc Hoguin | |
Also remove the last instance of an "eval export" that pollutes the environment and use the new core_render for it instead. core_render does not include $(verbose) as this needs to be different depending on who calls it. It's now set explicitly everywhere required. | |||
2018-11-26 | Use two colons for the shell target | Loïc Hoguin | |
2018-11-26 | Propagate the effects of V=1 to relx | Loïc Hoguin | |
2018-11-26 | Don't include applications with no ebin/ directory in escripts | Loïc Hoguin | |
2018-11-26 | Add a guide section about dealing with duplicate modules | Loïc Hoguin | |
While the solution is not the best we could do it's better than nothing. | |||
2018-11-26 | Add or improve tests based on false flag reports | Loïc Hoguin | |
2018-11-26 | Fix propagation of SP in sub-apps | Loïc Hoguin | |
And some refactor and additional testing for overriding. Turns out we can override some variables even if ?= is not used, so nothing had to be done to support overriding. | |||
2018-11-26 | Fix badly written tests failing when LEGACY=1 | Loïc Hoguin | |
2018-11-26 | Disable Asciidoc tests requiring DocBook if not installed | Loïc Hoguin | |
The toolchain is too heavy for CI. Gotta wait for me to finish the work on Asciideck for building HTML pages. | |||
2018-11-26 | Disable sphinx tests when it isn't installed | Loïc Hoguin | |
2018-11-26 | Tweak a few tests so they run on all platforms | Loïc Hoguin | |
2018-11-26 | Document the requirement on flock for parallel builds | Loïc Hoguin | |
2018-11-26 | Add test for autopatch with two Rebar projects | Loïc Hoguin | |
2018-11-26 | Use flock/lockf when available to avoid a -j issue | Loïc Hoguin | |
Fetching rebar is conditional depending on the project being built, and if two projects require it and -j is used this could mean the fetching happens at the same time and one would fail. | |||
2018-11-25 | Allow running tests using the latest kerl-built Erlang/OTP version | Loïc Hoguin | |
2018-11-25 | Build issues testing multi-apps projects | Loïc Hoguin | |
I've reworked how the multi-apps projects are built. In particular I've made sure the test build is made from the top-level once, and then only tests are run on this build. It used to build multiple times and some builds would not include test mode, not good. I've also fixed issues with running tests in parallel. All tests now pass with -j8 on my machine. It's possible more issues remain that are not covered by tests yet though. | |||
2018-11-25 | Fix a shell test when run in parallel | Loïc Hoguin | |
2018-11-25 | Build $(PROJECT).d in a separate $(MAKE) call | Loïc Hoguin | |
This avoids the issue where clean will remove a file that was otherwise generated and won't be regenerated. This might also help with parallel building. | |||
2018-11-24 | Test case for yecc, switching between test mode and normal mode | Hugo Mills | |
With a yecc grammar in the project, and this sequence of commands: $ make clean $ make check $ make $ make the "make check" succeeds. The first "make" fails because the .erl file built from the .yrl file doesn't exist. The second "make" succeeds. Add a test case for this situation. Signed-off-by: Hugo Mills <[email protected]> | |||
2018-11-24 | Add the git-subfolder fetch method | Loïc Hoguin | |
It clones and checkouts like the git fetch method, but does so in the Erlang.mk temporary directory. It then creates a symbolic link to the subfolder for the dependency. | |||
2018-11-24 | Document building EDoc on all apps in multi-apps projects | Loïc Hoguin | |
2018-11-24 | Fix a test that used invalid application names | Loïc Hoguin | |
2018-11-24 | Move apps tests in their own file and fix a test case | Loïc Hoguin | |
2018-11-24 | Disallow uppercase characters in application names | Loïc Hoguin | |
2018-11-24 | Error out on dash characters during bootstrap | Loïc Hoguin | |
2018-11-24 | Don't try to create a nif if n wasn't provided | Loïc Hoguin | |
2018-11-24 | Update the OTP-REG.mib file download location | Loïc Hoguin | |
2018-11-24 | Add a warning to not edit env.mk | Loïc Hoguin | |
2018-11-24 | Improve ct/eunit tests | Loïc Hoguin | |
Also don't run eunit if there's no src/test directory. | |||
2018-11-23 | Ensure apps eunit tests only run once when called directly | Loïc Hoguin | |
2018-11-23 | Allow overriding APPS_DIR/DEPS_DIR in apps | Loïc Hoguin | |
2018-11-23 | Add eunit test with apps where one include_lib another | Roger Lipscombe | |
2018-11-23 | Reorder the test-dir options to make it more like compile_erl | Loïc Hoguin | |
2018-11-23 | Ensure apps have APPS_DIR and DEPS_DIR defined | Loïc Hoguin | |
So they can use include files and other from other apps when they're built directly, and that they use the same deps directory. | |||
2018-11-23 | Remove an unnecessary test message | Loïc Hoguin | |
2018-11-23 | Allow keeping the CT logs on distclean | Loïc Hoguin | |
This is useful for CI scenarios. | |||
2018-11-22 | Use 'Noninteractive' frontend in Dockerfile | Roger Lipscombe | |
Otherwise it stops to ask what timezone you want to use. | |||
2018-11-22 | Add relx-post-rel hook | Oleg Nemanov | |
This hook can be used, for example, to copy additional files to release before it is tared by relx. | |||
2018-09-12 | Append -native to ERLANG_HIPE installations | Loïc Hoguin | |
2018-09-12 | Prevent kerl from being deleted uncorrectly | Loïc Hoguin | |
2018-09-12 | Hide asciidoc-manual commands | Loïc Hoguin | |
2018-08-01 | Filter out the old OTP versions from LATEST_ERLANG_OTP | Loïc Hoguin | |
2018-07-05 | Document ERLANG_MK_REPO and ERLANG_MK_COMMIT | Krzysztof Jurewicz | |
2018-07-05 | Swallow warnings when creating a PLT | Krzysztof Jurewicz | |
2018-07-05 | Add experimental auto-reloading of code for releases | Loïc Hoguin | |