|
|
@@ -14,15 +14,15 @@ dependencies:
|
|
|
- go version
|
|
|
|
|
|
test:
|
|
|
- pre:
|
|
|
- - git clean -fxd
|
|
|
- - go clean -i -r ./cmd/...
|
|
|
override:
|
|
|
# First install latest versions of all dependencies
|
|
|
- - go get -v -t -d ./...
|
|
|
+ - go get -u -v -t -d ./...
|
|
|
+ # Clean out old crap
|
|
|
+ - git clean -fxd
|
|
|
+ - go clean -i -r ./cmd/...
|
|
|
# Build the binaries with those
|
|
|
- - go build -v ./cmd/...
|
|
|
+ - go build -i ./cmd/...
|
|
|
# And run the tests
|
|
|
- - go test -v -short ./...
|
|
|
+ - go test -short ./...
|
|
|
# Build all packages, using the vendored dependencies.
|
|
|
- ./build.sh all
|