Remove rebar.config to fix the building error of CI

This commit is contained in:
Feng Lee 2017-08-28 17:31:38 +08:00
parent b5f741391b
commit e1816a5682
4 changed files with 3 additions and 8 deletions

1
.gitignore vendored
View File

@ -30,3 +30,4 @@ _build
.rebar3
rebar3.crashdump
.DS_Store
rebar.config

View File

@ -3,10 +3,7 @@ language: erlang
otp_release:
- 20.0
before_script:
- make autopatch
script:
script:
- make
sudo: false

View File

@ -49,9 +49,6 @@ DIALYZER_OPTS := --verbose --statistics -Werror_handling \
include erlang.mk
autopatch::
$(call dep_autopatch,goldrush)
app:: rebar.config
app.config::

View File

@ -1,4 +1,4 @@
{deps, [
{goldrush,".*",{git,"https://github.com/basho/goldrush","0.1.9"}},{gproc,".*",{git,"https://github.com/uwiger/gproc",""}},{lager,".*",{git,"https://github.com/basho/lager","master"}},{esockd,".*",{git,"https://github.com/emqtt/esockd","master"}},{ekka,".*",{git,"https://github.com/emqtt/ekka","develop"}},{mochiweb,".*",{git,"https://github.com/emqtt/mochiweb","master"}},{pbkdf2,".*",{git,"https://github.com/emqtt/pbkdf2","2.0.1"}},{lager_syslog,".*",{git,"https://github.com/basho/lager_syslog",""}},{bcrypt,".*",{git,"https://github.com/smarkets/erlang-bcrypt","master"}}
{goldrush,".*",{git,"https://github.com/basho/goldrush","0.1.9"}},{gproc,".*",{git,"https://github.com/uwiger/gproc",""}},{lager,".*",{git,"https://github.com/basho/lager","master"}},{esockd,".*",{git,"https://github.com/emqtt/esockd","master"}},{ekka,".*",{git,"https://github.com/emqtt/ekka","master"}},{mochiweb,".*",{git,"https://github.com/emqtt/mochiweb","master"}},{pbkdf2,".*",{git,"https://github.com/emqtt/pbkdf2","2.0.1"}},{lager_syslog,".*",{git,"https://github.com/basho/lager_syslog",""}},{bcrypt,".*",{git,"https://github.com/smarkets/erlang-bcrypt","master"}},{clique,".*",{git,"https://github.com/emqtt/clique",""}},{jsx,".*",{git,"https://github.com/talentdeficit/jsx",""}}
]}.
{erl_opts, [debug_info,{parse_transform,lager_transform}]}.