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 8E21C17DF2 for ; Thu, 1 Oct 2015 16:29:21 +0000 (UTC) Received: (qmail 65866 invoked by uid 500); 1 Oct 2015 16:29:21 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 65814 invoked by uid 500); 1 Oct 2015 16:29:21 -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 65805 invoked by uid 99); 1 Oct 2015 16:29:21 -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, 01 Oct 2015 16:29:21 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2623BE1536; Thu, 1 Oct 2015 16:29:21 +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: <8c1b11d332a04cf4ba0631b85664f83b@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: couchdb-global-changes git commit: Integrate with Travis CI Date: Thu, 1 Oct 2015 16:29:21 +0000 (UTC) Repository: couchdb-global-changes Updated Branches: refs/heads/master bee7c48b4 -> e55de37ec Integrate with Travis CI Project: http://git-wip-us.apache.org/repos/asf/couchdb-global-changes/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-global-changes/commit/e55de37e Tree: http://git-wip-us.apache.org/repos/asf/couchdb-global-changes/tree/e55de37e Diff: http://git-wip-us.apache.org/repos/asf/couchdb-global-changes/diff/e55de37e Branch: refs/heads/master Commit: e55de37ece29b6cbc0af540370d2425159338bf9 Parents: bee7c48 Author: Alexander Shorin Authored: Sun Aug 23 13:32:37 2015 +0300 Committer: Alexander Shorin Committed: Thu Oct 1 19:18:11 2015 +0300 ---------------------------------------------------------------------- .travis.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-global-changes/blob/e55de37e/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..67417be --- /dev/null +++ b/.travis.yml @@ -0,0 +1,23 @@ +language: erlang + +otp_release: + - 18.0 + - 17.5 + - R16B03-1 + +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/global_changes + - make + +script: + - ./bin/rebar setup_eunit + - BUILDDIR=`pwd` ./bin/rebar -r eunit apps=global_changes + +cache: apt