From 9edc7b6f3e9d29555b7e0dcd7d1cf570b76fca05 Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Sun, 23 Oct 2016 10:10:00 -0700 Subject: [PATCH] Use Go 1.7.1 on CircleCI --- circle.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/circle.yml b/circle.yml index 46c45a62..234463a1 100644 --- a/circle.yml +++ b/circle.yml @@ -1,5 +1,10 @@ +machine: + environment: + GODIST: "go1.7.1.linux-amd64.tar.gz" + test: override: + - go --version - bash gofmt.sh - go tool vet . - case $CIRCLE_NODE_INDEX in 0) go test -timeout 60s -v ./... ;; 1) GORACE="halt_on_error=1" go test -race -timeout 120s -v ./...;; esac: