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 61F2F200C30 for ; Tue, 31 Jan 2017 01:43:07 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 5C412160B4D; Tue, 31 Jan 2017 00:43:07 +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 A1D4F160B64 for ; Tue, 31 Jan 2017 01:43:06 +0100 (CET) Received: (qmail 87450 invoked by uid 500); 31 Jan 2017 00:43:05 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 87300 invoked by uid 99); 31 Jan 2017 00:43:05 -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; Tue, 31 Jan 2017 00:43:05 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6939ADFF88; Tue, 31 Jan 2017 00:43:05 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kmiller@apache.org To: commits@geode.apache.org Date: Tue, 31 Jan 2017 00:43:09 -0000 Message-Id: <795eed1daf5a42eeadc6249aa19c3640@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [05/10] geode-examples git commit: GEODE-2318 Add travis configuration archived-at: Tue, 31 Jan 2017 00:43:07 -0000 GEODE-2318 Add travis configuration Project: http://git-wip-us.apache.org/repos/asf/geode-examples/repo Commit: http://git-wip-us.apache.org/repos/asf/geode-examples/commit/712e642d Tree: http://git-wip-us.apache.org/repos/asf/geode-examples/tree/712e642d Diff: http://git-wip-us.apache.org/repos/asf/geode-examples/diff/712e642d Branch: refs/heads/feature/GEODE-2231 Commit: 712e642d18927ac5fc0169eecd5b649244a7cd16 Parents: feb70fd Author: Anthony Baker Authored: Tue Jan 17 14:11:58 2017 -0800 Committer: Anthony Baker Committed: Tue Jan 17 19:50:38 2017 -0800 ---------------------------------------------------------------------- .travis.yml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode-examples/blob/712e642d/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..bcef9b8 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,41 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +language: java + +jdk: + - oraclejdk8 + +before_cache: + - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock + +cache: + directories: + - $HOME/.gradle/caches/ + - $HOME/.gradle/wrapper/ + +after_failure: + - cat /home/travis/build/apache/geode-examples/build/reports/rat/rat-report.txt + +notifications: + email: + recipients: + - dev@geode.apache.org + on_success: change + on_failure: change + +branches: + except: + - /^feature.*$/