From 49357a5d59cfa599333f494eccfa690fd282a0d0 Mon Sep 17 00:00:00 2001 From: Olivier Gambier Date: Thu, 22 Jan 2015 14:25:28 -0800 Subject: [PATCH] Move to godep --- circle.yml | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/circle.yml b/circle.yml index fd2245587..963b60275 100644 --- a/circle.yml +++ b/circle.yml @@ -45,13 +45,13 @@ dependencies: override: # Install dependencies for every copied clone/go version - - gvm use old && go get -t -d -v ./...: + - gvm use old && go get github.com/tools/godep: pwd: $BASE_OLD - - gvm use stable && go get -t -d -v ./...: + - gvm use stable && go get github.com/tools/godep: pwd: $BASE_STABLE - # - gvm use bleed && go get -t -d -v ./...: + # - gvm use bleed && go get github.com/tools/godep: # pwd: $BASE_BLEED post: @@ -81,7 +81,7 @@ test: override: # Test every version we have (but stable) - - gvm use old; go test -test.v -test.short ./...: + - gvm use old; godep go test -test.v -test.short ./...: timeout: 600 pwd: $BASE_OLD @@ -95,7 +95,7 @@ test: - gvm use stable; go list ./... | xargs -L 1 -I{} rm -f $GOPATH/src/{}/coverage.out: pwd: $BASE_STABLE - - gvm use stable; go list ./... | xargs -L 1 -I{} go test -test.short -coverprofile=$GOPATH/src/{}/coverage.out {}: + - gvm use stable; go list ./... | xargs -L 1 -I{} godep go test -test.short -coverprofile=$GOPATH/src/{}/coverage.out {}: timeout: 600 pwd: $BASE_STABLE @@ -112,12 +112,3 @@ test: # - go get code.google.com/p/go.tools/cmd/goimports # - test -z "$(goimports -l -w ./... | tee /dev/stderr)" # http://labix.org/gocheck - -general: - branches: - ignore: - - master - - 0.7 - - 0.8 - - 0.9 - - 1.0