From ee6cced42c3228a4047485c676c2ada5e91ea08e Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Thu, 22 Jan 2015 16:06:35 -0500 Subject: [PATCH] Use the new Travis Docker infrastructure and stuff --- .travis.yml | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4fac7ab93..a22c5ea28 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,31 @@ +sudo: false + language: go go: - - 1.2 - - 1.3 - - tip + - 1.2 + - 1.3 + - 1.3 + - tip install: make updatedeps + script: - - GOMAXPROCS=2 make test - #- go test -race ./... + - GOMAXPROCS=2 make test + #- go test -race ./... + +branches: + only: + - master + +notifications: + irc: + channels: + - "irc.freenode.org#packer-tool" + skip_join: true + use_notice: true matrix: - allow_failures: - - go: tip + fast_finish: true + allow_failures: + - go: tip