You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2019/11/19 18:21:20 UTC

[couchdb-local] 11/16: Add .travis.yml

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

davisp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-local.git

commit 7046719d8b4c18ece5317a54eed0a0ab3509e7a7
Author: Takeru Ohta <ph...@gmail.com>
AuthorDate: Thu Oct 19 06:38:52 2017 +0900

    Add .travis.yml
---
 .travis.yml | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..8e97859
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,24 @@
+language: erlang
+
+os: linux
+otp_release:
+  - 20.0
+  - 19.3
+  - 18.3
+
+script: rebar3 eunit
+install:
+  - wget https://s3.amazonaws.com/rebar3/rebar3 && chmod +x rebar3
+  - sudo pip install codecov
+script:
+  - ./rebar3 compile
+  - ./rebar3 xref
+  - ./rebar3 eunit
+  - ./rebar3 dialyzer
+  - ./rebar3 edoc
+  - ./rebar3 cover
+  - ./rebar3 covertool generate
+  - cp _build/test/covertool/local.covertool.xml ./cobertura.xml
+
+after_success:
+  - codecov