From 5bf85b963a2e74d17cf1d898ef4c1c2b2f3ffa9a Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 20 May 2017 23:11:12 -0700 Subject: [PATCH] Okay, I think I see what madness it's doing now. Stages and matrices are just 100% incompatible. Stick to doing the matrix-y stuff in the first (default, implicit) stage, stay far away from it for the other stages. --- .travis.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3369073..0af977a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,16 +7,15 @@ go: - 1.7 - 1.8 -jobs: - include: - - install: - - go get github.com/Masterminds/glide - - go get github.com/golang/lint/golint - script: - - glide install - - go test $(glide novendor) - - go vet $(glide novendor) - - glide novendor | xargs -n1 golint +install: +- go get github.com/Masterminds/glide +- go get github.com/golang/lint/golint + +script: +- glide install +- go test $(glide novendor) +- go vet $(glide novendor) +- glide novendor | xargs -n1 golint env: matrix: