Clean out before build/test on CircleCI

This commit is contained in:
Jakob Borg 2015-09-04 14:39:22 +02:00
parent 06f319a380
commit 2d4397af53
1 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,8 @@ test:
override:
# First install latest versions of all dependencies
- go get -v -t -d ./...
# Remove oldcrap object files from CircleCI's "source cache"
- go clean -i -r ./cmd/...
# Build the binaries with those
- go build -v ./cmd/...
# And run the tests