You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by dl...@apache.org on 2019/06/26 15:29:09 UTC

[dubbo-erlang] branch master updated (0605b63 -> cdfcff9)

This is an automated email from the ASF dual-hosted git repository.

dlive pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-erlang.git.


    from 0605b63  change json dependence lib to jsx
     new 509480f  change codecov plugin lazy load
     new cdfcff9  change codecov plugin lazy load

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml  | 2 +-
 rebar.config | 8 +++++---
 2 files changed, 6 insertions(+), 4 deletions(-)


[dubbo-erlang] 02/02: change codecov plugin lazy load

Posted by dl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dlive pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-erlang.git

commit cdfcff9962dad903d794f98fbdd2dcef4cac2ec5
Author: DLive <xs...@163.com>
AuthorDate: Wed Jun 26 23:28:34 2019 +0800

    change codecov plugin lazy load
---
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index a3b2aa1..6fa08b4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,7 +16,7 @@ script:
   - ./rebar3 compile
   - ./rebar3 eunit -c
   - ./rebar3 ct -c --sys_config config_example/sys.config
-  - ./rebar3 codecov analyze
+  - ./rebar3 as test codecov analyze
 
 after_success:
   - codecov
\ No newline at end of file


[dubbo-erlang] 01/02: change codecov plugin lazy load

Posted by dl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dlive pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-erlang.git

commit 509480f7c61b03a232dc1ae5e36a1103bf6965b0
Author: DLive <xs...@163.com>
AuthorDate: Wed Jun 26 23:27:55 2019 +0800

    change codecov plugin lazy load
---
 rebar.config | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/rebar.config b/rebar.config
index 0cf9acd..f7d51b9 100644
--- a/rebar.config
+++ b/rebar.config
@@ -6,8 +6,7 @@
 {project_app_dirs, ["."]}.
 
 {plugins, [
-	rebar3_hex,
-	{rebar3_codecov, "0.1.0"}
+	rebar3_hex
 ]}.
 
 {provider_hooks,
@@ -30,7 +29,10 @@
 {profiles,[
 	{test,
 		[
-			{extra_src_dirs, ["test"]}
+			{extra_src_dirs, ["test"]},
+			{plugins, [
+				{rebar3_codecov, "0.1.0"}
+			]}
 		]
 	}
 ]}.
\ No newline at end of file