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 71E2A200B44 for ; Thu, 9 Jun 2016 06:00:30 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 7076D160A5E; Thu, 9 Jun 2016 04:00:30 +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 BDD3C160A35 for ; Thu, 9 Jun 2016 06:00:29 +0200 (CEST) Received: (qmail 31940 invoked by uid 500); 9 Jun 2016 04:00:28 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 31842 invoked by uid 99); 9 Jun 2016 04:00:28 -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, 09 Jun 2016 04:00:28 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6947DDF97F; Thu, 9 Jun 2016 04:00:28 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ctubbsii@apache.org To: commits@accumulo.apache.org Date: Thu, 09 Jun 2016 04:00:30 -0000 Message-Id: <2c7eb6dd1fda433d8bf53dfd9b86d7e1@git.apache.org> In-Reply-To: <29197f80fd64436eb4571ebf8f0e2639@git.apache.org> References: <29197f80fd64436eb4571ebf8f0e2639@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [03/10] accumulo git commit: ACCUMULO-4182 Improve travis-ci notifications archived-at: Thu, 09 Jun 2016 04:00:30 -0000 ACCUMULO-4182 Improve travis-ci notifications * Limit builds to only the most recent, most reliable jdk available * Remove unneeded hostname workarounds for older OpenJDKs * Make IRC notification messages more succinct * Don't notify on repeated successes Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/60ac92d4 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/60ac92d4 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/60ac92d4 Branch: refs/heads/1.8 Commit: 60ac92d491ca881b5d93dd27d7dcaa024548e9e7 Parents: 67605d7 Author: Christopher Tubbs Authored: Wed Jun 8 23:50:21 2016 -0400 Committer: Christopher Tubbs Committed: Wed Jun 8 23:57:15 2016 -0400 ---------------------------------------------------------------------- .travis.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/60ac92d4/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index ef22669..b4a91d7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,27 +13,25 @@ # See the License for the specific language governing permissions and # limitations under the License. language: java -addons: - hostname: travis-accumulo-host notifications: irc: channels: - "chat.freenode.net#accumulo" use_notice: true + on_success: change + on_failure: always + template: + - "%{result} %{repository_slug} %{branch} (%{build_url}): %{message}" # speed up builds; don't use with install cache: directories: - $HOME/.m2 -# skip pre-fetch of maven dependencies +# skip pre-fetch of maven dependencies by making install step a NOOP install: true jdk: - oraclejdk8 - - oraclejdk7 - - openjdk7 - - openjdk6 # clear any cache of accumulo artifacts, just in case; use https for central before_script: - - sed -e "s/^\\(127\\.0\\.0\\.1.*\\)/\\1 $(hostname)/" /etc/hosts | sudo tee /etc/hosts - rm -rf $HOME/.m2/repository/org/apache/accumulo - echo "secure-centralhttps://repo.maven.apache.org/maven2central" > $HOME/settings-custom.xml script: mvn --settings $HOME/settings-custom.xml clean verify -DskipITs