Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 5C9A4200C86 for ; Tue, 25 Apr 2017 14:38:18 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 5B7EB160BBD; Tue, 25 Apr 2017 12:38:18 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id C152F160BBA for ; Tue, 25 Apr 2017 14:38:17 +0200 (CEST) Received: (qmail 61322 invoked by uid 500); 25 Apr 2017 12:38:16 -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 60544 invoked by uid 99); 25 Apr 2017 12:38:15 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Apr 2017 12:38:15 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 2DA058180A; Tue, 25 Apr 2017 12:38:12 +0000 (UTC) Date: Tue, 25 Apr 2017 12:38:16 +0000 To: "commits@couchdb.apache.org" Subject: [couchdb-docker] 04/39: add Travis CI MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: garren@apache.org Reply-To: "commits@couchdb.apache.org" In-Reply-To: <149312389272.12093.14238626462137101180@gitbox.apache.org> References: <149312389272.12093.14238626462137101180@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: couchdb-docker X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Rev: 8db81f57c6b64753b51c23143af70363582198ff X-Git-NotificationType: diff X-Git-Multimail-Version: 1.3.dev Auto-Submitted: auto-generated Message-Id: <20170425123813.2DA058180A@gitbox.apache.org> archived-at: Tue, 25 Apr 2017 12:38:18 -0000 This is an automated email from the ASF dual-hosted git repository. garren pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/couchdb-docker.git commit 8db81f57c6b64753b51c23143af70363582198ff Author: klaemo AuthorDate: Tue May 24 23:33:05 2016 +0200 add Travis CI --- .travis.yml | 12 ++++++++++++ README.md | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9ce7214 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +sudo: required + +services: + - docker + +before_install: + - docker build -t couchdb:1.6.1 1.6.1 + - docker build -t couchdb:1.6.1-couchperuser 1.6.1-couchperuser + +script: + - docker run -d -p 5984:5984 couchdb:1.6.1 && sleep 5 && curl http://localhost:5984 + - docker run -d -p 5985:5984 couchdb:1.6.1-couchperuser && sleep 5 && curl http://localhost:5985 diff --git a/README.md b/README.md index 98cfd9e..a27e258 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -YADC +YADC [![Build Status](https://travis-ci.org/klaemo/docker-couchdb.svg?branch=master)](https://travis-ci.org/klaemo/docker-couchdb) === Yet Another Dockerized CouchDB. -- To stop receiving notification emails like this one, please contact "commits@couchdb.apache.org" .