Run travis testing with 1.4 only

pull/1311/head
Philip O'Toole 2015-01-11 14:35:12 -08:00
parent 14b415eaf2
commit da94091014
1 changed files with 1 additions and 7 deletions

View File

@ -1,17 +1,11 @@
language: go
go:
- 1.3.3
- 1.4
install:
- go get -d -v ./... && go build -v ./...
- if [ $TRAVIS_GO_VERSION == "go1.3.3" ]; then
go get -u code.google.com/p/go.tools/cmd/vet;
fi
- if [ $TRAVIS_GO_VERSION == "go1.4" ]; then
go get -u golang.org/x/tools/cmd/vet;
fi
- go get -u golang.org/x/tools/cmd/vet;
script: go test -v . ./messaging ./influxql; go vet ./...