From 2d4397af53db6c07743ad9e484fd987aa22f6a14 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Fri, 4 Sep 2015 14:39:22 +0200 Subject: [PATCH] Clean out before build/test on CircleCI --- circle.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/circle.yml b/circle.yml index 32d35dd9..017b07f3 100644 --- a/circle.yml +++ b/circle.yml @@ -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