| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Replicates `erl` behaviour.
|
|\
| |
| | |
give top level plugin providers precedence over default providers
|
| | |
|
|\ \
| |/
|/| |
Make lock files future-proof
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Changes to how hex or packages may work in the future will necessarily
bring changes to the format of lock files.
This commit adds an optional framing for future lock files of the form:
{Version, LockList}.
<Whatever consultable attributes>
This format is supported such as the LockList is the current lockfile
contents, and will never have more information than it currently does.
Attributes can be whatever and are currently undefined.
Rebar copies will be able to:
- Keep using the core locklist (which avoids breaking the last year or
so of community libraries using rebar3)
- Warn when it runs an outdated copy in comparison to the lock file
- Automatically rewrite lock files in the format it supports
- Augment or parse files in a version-specific manner.
This changes the usage interface slightly, but is backwards *and*
forwards compatible.
|
| | |
|
| | |
|
|\ \
| |/
|/| |
Less color
|
| | |
|
| | |
|
| | |
|
| |\ |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| |_|/
|/| | |
Add secondary hook for rebar_prv_compile
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
erlc_compile, for before/after compiling .erls to
.beams, but before .app.src to .app
|
|\ \ \
| | | |
| | | | |
Ignore unknown warning when dialyzer < 2.8
|
| |/ / |
|
|/ / |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
this ensures the project apps are compiled to `lib/` instead of `extras/`
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Several projects use an include path relative
to the project's root.
file:compile will look in three places for the include
files:
The current working directory
The directory where the module is being compiled
The directories given by the include option
|
|\ \
| | |
| | | |
add profile option to clean task
|
| | | |
|
|\ \ \
| |/ /
|/| | |
deduplicate default test set generated by `rebar3 eunit`
|
| | |
| | |
| | |
| | |
| | | |
this ONLY attempts to deduplicate test sets that are generated by
rebar in the absence of any user specified tests
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
If a bad configuration file is submitted to rebar3 shell, display the
following error:
===> The configuration file submitted could not be read and will be
ignored.
And keep going otherwise rather than silently failing.
While crash-fast is usually a good mechanism, the shell so far is very
tolerant of failures from apps to boot and whatnot, so this feels
appropriate.
Fixes #1019
|
|\ \ \
| |/ /
|/| | |
check at runtime instead of compile time for `file:list_dir_all/1`
|
| | |
| | |
| | |
| | |
| | |
| | | |
this is slower than the compile time check but i guess packaging rebars with
repos is still a thing and i think only the eunit and ct providers call it
anyways
|
|\ \ \
| | | |
| | | | |
change detection of valid modules for `eunit`
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
`beam_lib:chunks(..)` needs a path to object code which, frustratingly,
`code:which/1` won't return for cover compiled modules. instead just
assume that if `code:which/1` doesn't return `non_existing` a module
is something we can run tests on
|
|\ \ \
| |/ /
|/| | |
convert 'app' to 'application' in eunit_opts to match cmdline args
|
| | | |
|
|/ /
| |
| |
| | |
into directory test arguments
|
|\ \
| | |
| | | |
Support old-style shell for rebar3 shell
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This reuses the trick used within OTP to pick within old and new shell.
The 'user' structure is the same for all cases (escript, escript + dumb
TERM, unstable install, unstable install + dumb TERM), so we take it
down first.
Then we boot the TTY driver, which fails if TERM=dumb, in which case we
boot the retro-style usr. If it worked, we shut down the driver again,
and boot a modern shell structure.
This avoids all warnings and seems to work in all cases.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This is quite the hack.
This requires to detect the current shell running; if it's the new
shell, business as usual.
However, if it's the old shell, we have to find a way to take over it
and drive IO. This requires a few steps because:
- the old shell does not let you be supervised intelligently (it uses
supervisor_bridge, so killing the child is not a supported operation
from the supervisor)
- the old shell ignores all trappable exit signals except those coming
from the Port in charge of stdio ({fd, 0, 1})
- the old shell shuts down on all exit signals from the stdio Port
except for badsig, and replicates the shutdown reason otherwise
- An escript does not tolerate the `user` process dying (old shell) for
any non-normal reason without also taking the whole escript down
- Booting in an escript has an implicit 'noshell' argument interpreted
by the old shell as a way to boot the stdio Port with only stdout
taken care of
Because of all these points, we have to kill the old `user` process by
sending it a message pretending to be the Stdio port dying of reason
`normal`, which lets it die without triggering the ire of its
supervision tree and keeping the escript alive. This, in turn, kills the
old stdio port since its parent (user.erl) has died.
Then we have to boot our copy of user.erl (rebar_user.erl) which
conveniently ignores the possibility of running the stdio port on stdout
only -- always using stdin *and* stdout, giving us a bona fide old-style
shell.
A known issue introduced is that running r3:do(ct) seems to then kill
the shell, and r3:do(dialyzer) appears to have an odd failure, but
otherwise most other commands appear to work fine.
|
|\ \ \
| | | |
| | | | |
merge overlay entries into a single {overlay, list()} for relx
|
| | | | |
|
|/ / / |
|
| | | |
|
|\ \ \
| | | |
| | | | |
only apply default and prod profile to dependencies
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
Fix windows stuff
|