| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \
| |/
|/| |
Make rebar3 work with dialyzer internally
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
We got funny interactions since PR #1656:
- the last `debug_info`-related option seen in a list of options after
profile merge is kept, allowing later profiles from overtaking earlier
ones
- if you go `rebar3 as a,b,c compile`, the options from profile A come
before B, which come before C, so C's options win
- overrides are applied in order of profile as well, giving a priority
to a later profile than an earlier one
- The values in overrides are prepended rather than suffixed to the
existing list
- this means if we have to overrides adding options, such as `default`
adding `no_debug_info', and `dialyze` adding `debug_info`, the
results are `[debug_info]` as `dialyze` is applied first, and then
`[no_debug_info, debug_info]` as `default` overrides are applied
- the final result is `no_debug_info` always winning when erl_opts are
overriden specifically.
only `debug_info` options are going to suffer this, and in the context of
overrides. Other `erl_opts` should be fine. I'm not sure how that can be
fixed at all.
In the meanwhile, we can add support back while leaving the default to
not having debug information. This is done by:
- moving all `no_debug_info` options to the `prod` profile
- forcing `prod` to be called by `./bootstrap` so that most people keep
getting no debug info
- anyone calling `rebar3 clean -a` and then rebuilding with `rebar3
escriptize` (i.e. rebar3 devs) get debug info going
This is up for review and discussion.
|
|\
| |
| | |
(#1741): Fix quotes in etag values
|
|/ |
|
|\
| |
| | |
Bump cth_readable to 1.3.3
|
|/
|
|
| |
Fixes some lager warnings since config changes
|
|\
| |
| | |
Remove noisy debug message
|
|/
|
|
|
| |
It makes things worse than if it weren't there.
Fixes issue #1726
|
|\
| |
| | |
sort-as: force an order on multiple profiles
|
| | |
|
| |
| |
| |
| | |
test profile wants
|
| |
| |
| |
| | |
list passed to providers:create/1
|
| |
| |
| |
| | |
This reverts commit 0f7e6c31e97c238649e7ae0a1b7087e342174ecc.
|
| |
| |
| |
| | |
This reverts commit 4ad1db97336a3ac070880876ada07d4c7b769327.
|
| | |
|
| | |
|
| |
| |
| |
| | |
This reverts commit 3f8dd5eacebb913144f3615fdf44658b6223a791.
|
| | |
|
|\ \
| |/
|/| |
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
use debug level for logs about bad package versioning
|
|/ |
|
|\
| |
| | |
don't attempt retry of missing packages when updating index
|
|/ |
|
|\
| |
| | |
Env for providers
|
| | |
|
| | |
|
| | |
|
| | |
|
|\ \
| |/
|/| |
rebar_package: do not return first package version for constraint with no match
|
|/ |
|
|\
| |
| | |
Set unicode option for standard_io at entry point
|
| | |
|
|\ \
| |/
|/| |
fix hooks and plugins usage when cleaning build artifacts for deps
|
| |
| |
| |
| |
| |
| | |
find_apps didn't read config files so no hooks were in the app_infos,
and now that hooks are being done rebar needs plugins to be able
to run clean plugin hooks in deps.
|
| | |
|
|\ \
| | |
| | | |
upgrade erlware commons and relx
|
|/ / |
|
|\ \
| |/
|/| |
Issue #1704: Fix alias provider argument passing
|
|/
|
|
|
|
|
|
|
|
|
|
| |
The way arguments are passed by the alias provider is not compatible
with all rebar providers/commands. Especially the release (relx)
provider does not like getting its arguments as a plain string. It
expects its arguments in a pre-parsed format as returned by
getopt:parse/2.
Other commands, e.g. eunit, seem to be fine with both ways of argument
passing. Therefore, this fix changes the alias provider argument passing
to the getopt format in general.
|
| |
|
| |
|
|\
| |
| | |
Corrected Erlang Solutions Download URL [skip ci]
|
|/
|
| |
Current URL goes to 404 page, corrected URL to avoid confusion.
|
|\
| |
| | |
Fix repeated bootstrap runs
|
| |
| |
| |
| |
| |
| |
| |
| | |
Updating the bootstrap script in #1689 made it so symlinks that already
exist return `exist` rather than ok, in line with the regular code.
However the bootstrap module wouldn't handle this case.
This fixes the problem by ensuring that `exists` is as valid as `ok`.
|
|\ \
| |/
|/| |
Fix escriptize failure when ebin/ has subdirs
|
|/
|
|
|
|
|
|
|
|
|
| |
Although fairly irregular, the presence of a subdirectory in ebin/ while
running rebar3 escriptize would crash the run and generate a dump.
Since ebin subdirectories are generally not supported (adding a path for
an application only adds ebin/ and no subdirectories to the VM's path
set), we just silently ignore the directory altogether.
Fixes #1693
|