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
857 B
YAML
19 lines
857 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.11.x
|
|
|
|
go_import_path: contrib.go.opencensus.io/exporter/ocagent
|
|
|
|
before_script:
|
|
- GO_FILES=$(find . -iname '*.go' | grep -v /vendor/) # All the .go files, excluding vendor/ if any
|
|
- PKGS=$(go list ./... | grep -v /vendor/) # All the import paths, excluding vendor/ if any
|
|
|
|
script:
|
|
- go build ./... # Ensure dependency updates don't break build
|
|
- if [ -n "$(gofmt -s -l $GO_FILES)" ]; then echo "gofmt the following files:"; gofmt -s -l $GO_FILES; exit 1; fi
|
|
- go vet ./...
|
|
- GO111MODULE=on go test -v -race $PKGS # Run all the tests with the race detector enabled
|
|
- GO111MODULE=off go test -v -race $PKGS # Make sure tests still pass when not using Go modules.
|
|
- 'if [[ $TRAVIS_GO_VERSION = 1.8* ]]; then ! golint ./... | grep -vE "(_mock|_string|\.pb)\.go:"; fi'
|