From 08f5f493c6838b841914b777eabddb5faf68b6dc Mon Sep 17 00:00:00 2001 From: Nick Glynn Date: Sun, 4 Jun 2017 12:33:03 +1000 Subject: [PATCH] Update Circle.yml to newest Go This fixes the build issue in CircleCI due to golint requiring > 1.5 - see [here](https://github.com/golang/lint/issues/198) for details. --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 3b74ad6..5072eae 100644 --- a/circle.yml +++ b/circle.yml @@ -1,6 +1,6 @@ machine: pre: - - curl -o go.tar.gz -sL https://golang.org/dl/go1.4.linux-amd64.tar.gz + - curl -o go.tar.gz -sL https://golang.org/dl/go1.8.3.linux-amd64.tar.gz - sudo rm -rf /usr/local/go - sudo tar -C /usr/local -xzf go.tar.gz - sudo chmod a+w /usr/local/go/src/