From 1cb275416d9757d41ff0cb271c31e2beec91bca1 Mon Sep 17 00:00:00 2001 From: Evan Huus Date: Thu, 16 Apr 2015 20:37:16 +0000 Subject: [PATCH] Tweak travis config - only run go tip against latest kafka, there's no reason to add it to the full matrix - let travis finish fast by reporting success as soon as all the required builds pass (so the tip build might still be running) --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6386c7398..a9e5cc3cb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: go go: - 1.3.3 - 1.4.2 -- tip env: global: @@ -32,7 +31,11 @@ script: - make fmt matrix: + include: + - go: tip + env: KAFKA_VERSION=0.8.2.1 allow_failures: - go: tip + fast_finish: true sudo: false