Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E57A818BEC for ; Thu, 11 Feb 2016 12:21:43 +0000 (UTC) Received: (qmail 11551 invoked by uid 500); 11 Feb 2016 12:21:43 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 11495 invoked by uid 500); 11 Feb 2016 12:21:43 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 11486 invoked by uid 99); 11 Feb 2016 12:21:43 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2016 12:21:43 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9949DE0E1F; Thu, 11 Feb 2016 12:21:43 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kxepal@apache.org To: commits@couchdb.apache.org Date: Thu, 11 Feb 2016 12:21:43 -0000 Message-Id: <2500dad4d1cf4889961e45602c156353@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/3] couch-replicator commit: updated refs/heads/master to ea40886 Repository: couchdb-couch-replicator Updated Branches: refs/heads/master 3f268abba -> ea408866c Integrate with Travis CI Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator/commit/d7113857 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator/tree/d7113857 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator/diff/d7113857 Branch: refs/heads/master Commit: d7113857421d2bf839d6a303a7728eadc296b364 Parents: 3f268ab Author: Alexander Shorin Authored: Sun Aug 23 13:28:18 2015 +0300 Committer: Alexander Shorin Committed: Thu Feb 11 15:11:01 2016 +0300 ---------------------------------------------------------------------- .travis.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator/blob/d7113857/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..526b5f8 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,24 @@ +language: erlang + +otp_release: + - 18.0 + - 17.5 + - R16B03-1 + - R14B04 + +before_install: + - sudo apt-get update -qq + - sudo apt-get -y install libmozjs-dev + - git clone https://github.com/apache/couchdb + +before_script: + - cd couchdb + - ./configure --disable-docs --disable-fauxton + - cp -r ../!(couchdb) ./src/couch_replicator + - make + +script: + - rebar setup_eunit + - BUILDDIR=`pwd` rebar -r eunit apps=couch_replicator + +cache: apt