forked from emqx/quic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
42 lines (36 loc) · 1.1 KB
/
rebar.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{erl_opts, [debug_info]}.
{pre_hooks,
[{"(linux|darwin|solaris)", compile, "make build-nif"}
]}.
{deps, [{snabbkaffe, "1.0.1"}
]}.
{profiles,
[ {test,
[{erl_opts, [{d, 'SNK_COLLECTOR'}]}]}
, {doc,
[{plugins, [rebar3_hex, rebar3_ex_doc]},
{ex_doc, [
{extras, [ "README.md"
, "LICENSE"
, "docs/messages_to_owner.md"
, "docs/Terminology.md"
, "docs/DesignDecisions.md"
]},
{main, "README.md"},
{source_url, "https://github.com/emqx/quic"}
]}
]}
]
}.
{relx, [{release, {quicer, git},
[quicer]},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true}]}.
%% Coveralls
{plugins , [coveralls]}. % use hex package
{cover_enabled , true}.
{cover_export_enabled , true}.
{coveralls_coverdata , "_build/test/cover/ct.coverdata"}. % or a string with wildcards or a list of files
{coveralls_service_name , "github"}.
{coveralls_parallel, true}.