Dammit,CircleCI

This commit is contained in:
Jakob Borg 2015-09-04 14:58:58 +02:00
parent 516efb21cf
commit 51a4a88a81

View File

@ -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