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 1354918D94 for ; Mon, 24 Aug 2015 11:59:45 +0000 (UTC) Received: (qmail 59632 invoked by uid 500); 24 Aug 2015 11:59:29 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 59585 invoked by uid 500); 24 Aug 2015 11:59:29 -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 59576 invoked by uid 99); 24 Aug 2015 11:59:29 -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; Mon, 24 Aug 2015 11:59:29 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 04886DFFA2; Mon, 24 Aug 2015 11:59:29 +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 Message-Id: <1efc4da4fc9b41d2ab87988b02fde4ed@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: fabric commit: updated refs/heads/master to dcfcb2a Date: Mon, 24 Aug 2015 11:59:29 +0000 (UTC) Repository: couchdb-fabric Updated Branches: refs/heads/master 9335f03e6 -> dcfcb2a97 Integrate with Travis CI Project: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/commit/dcfcb2a9 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/tree/dcfcb2a9 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/diff/dcfcb2a9 Branch: refs/heads/master Commit: dcfcb2a971fa20ff1ceb96a5ea5ca81e398bbc35 Parents: 9335f03 Author: Alexander Shorin Authored: Mon Aug 24 14:30:01 2015 +0300 Committer: Alexander Shorin Committed: Mon Aug 24 14:55:01 2015 +0300 ---------------------------------------------------------------------- .travis.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fabric/blob/dcfcb2a9/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f47fff7 --- /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/fabric + - make + +script: + - rebar setup_eunit + - BUILDDIR=`pwd` rebar -r eunit apps=fabric + +cache: apt