435c0d9fc8
This PR switches the Nomad repository from using govendor to Go modules for managing dependencies. Aspects of the Nomad workflow remain pretty much the same. The usual Makefile targets should continue to work as they always did. The API submodule simply defers to the parent Nomad version on the repository, keeping the semantics of API versioning that currently exists.
19 lines
656 B
YAML
19 lines
656 B
YAML
language: go
|
|
|
|
go:
|
|
- '1.10'
|
|
- '1.11'
|
|
|
|
# sudo=false makes the build run using a container
|
|
sudo: false
|
|
|
|
before_install:
|
|
- go get github.com/mattn/goveralls
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get golang.org/x/tools/cmd/goimports
|
|
- go get github.com/golang/lint/golint
|
|
script:
|
|
- gofiles=$(find ./ -name '*.go') && [ -z "$gofiles" ] || unformatted=$(goimports -l $gofiles) && [ -z "$unformatted" ] || (echo >&2 "Go files must be formatted with gofmt. Following files has problem:\n $unformatted" && false)
|
|
- golint ./... # This won't break the build, just show warnings
|
|
- $HOME/gopath/bin/goveralls -service=travis-ci
|