9bd9a33ca4
`make install.tools` already installs `gometalinter` (as can be seen in the logs), so the subsequent `go get` steps are unnecessary. This change also reorders the build directives according to execution order: https://docs.travis-ci.com/user/customizing-the-build#The-Build-Lifecycle and replaces the "before_install" step with an override of the default "install" procedure (which we were suppressing anyway with install: true) Signed-off-by: Jonathan Yu <jawnsy@redhat.com>
20 lines
227 B
YAML
20 lines
227 B
YAML
language: go
|
|
go:
|
|
- 1.6
|
|
- 1.7
|
|
|
|
sudo: required
|
|
|
|
services:
|
|
- docker
|
|
|
|
install:
|
|
- make install.tools
|
|
|
|
before_script:
|
|
- export PATH=$HOME/gopath/bin:$PATH
|
|
|
|
script:
|
|
- make .gitvalidation
|
|
- make lint
|
|
- make integration
|