From 728700068e12d65c9701e998de37e997c7d3d5dc Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Mon, 25 Jan 2016 21:50:17 +0100 Subject: [PATCH] Switch to travis sudo & enable docker service Signed-off-by: Vincent Demeester --- .travis.yml | 31 +++++++++++-------------------- 1 file changed, 11 insertions(+), 20 deletions(-) diff --git a/.travis.yml b/.travis.yml index f4a224d8..e133b98e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,20 +1,11 @@ ---- - language: go - sudo: false - notifications: - email: false - env: - global: - - GO15VENDOREXPERIMENT=1 - go: - - 1.5 - - tip - install: - - go get github.com/golang/lint/golint - script: - - hack/make/validate-vet - - hack/make/validate-lint - - hack/make/validate-gofmt - - hack/make/validate-git-marks - - go build -o skopeo . - - go test -v . +sudo: required + +services: + - docker + +notifications: + email: false + +script: + - make validate + - make test-integration