-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from rabbitmq/use-ranch-1.6.0
Use Ranch 1.6.1 + restore Erlang 19/20 compatibility
- Loading branch information
Showing
5 changed files
with
44 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,21 @@ | ||
# vim:sw=2:et: | ||
|
||
language: erlang | ||
otp_release: | ||
- 19.3 | ||
- 20.3 | ||
- 21.0 | ||
script: "rebar3 ct" | ||
env: | ||
global: | ||
- PATH=~/.cache/rebar3/bin:$PATH | ||
install: | ||
- rebar3 local upgrade | ||
# We apparently need to run it once before Travis picks it up, even if | ||
# it's in the $PATH. | ||
- PATH=~/.cache/rebar3/bin:$PATH rebar3 -v | ||
- rebar3 report | ||
script: | ||
- rebar3 eunit -v | ||
- rebar3 ct | ||
sudo: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
{deps, | ||
[ | ||
{ranch, "1.5.0"}]}. | ||
{ranch, "1.6.1"}]}. | ||
|
||
{profiles, [ | ||
{test, [{deps, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{"1.1.0", | ||
[{<<"ranch">>,{pkg,<<"ranch">>,<<"1.5.0">>},0}]}. | ||
[{<<"ranch">>,{pkg,<<"ranch">>,<<"1.6.1">>},0}]}. | ||
[ | ||
{pkg_hash,[ | ||
{<<"ranch">>, <<"F04166F456790FEE2AC1AA05A02745CC75783C2BFB26D39FAF6AEFC9A3D3A58A">>}]} | ||
{<<"ranch">>, <<"2609724C9A7E163CA716A46C9087E037DB4262935F5D866122BA158ED917C233">>}]} | ||
]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters