From afd135944a778d76b4c61849688c28c8e00ba922 Mon Sep 17 00:00:00 2001 From: bergquist Date: Tue, 31 Jan 2017 20:57:34 +0100 Subject: [PATCH] tech(build): upgrade golang to 1.7.4 --- appveyor.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 0d087e23dac..30ccabb38d7 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,6 +7,7 @@ clone_folder: c:\gopath\src\github.com\grafana\grafana environment: nodejs_version: "6" GOPATH: c:\gopath + GOVERSION: 1.7.4 install: # install nodejs and npm @@ -14,6 +15,8 @@ install: - npm install -g yarn - yarn install --pure-lockfile - npm install -g grunt-cli + - appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-amd64.zip + - 7z x go%GOVERSION%.windows-amd64.zip -y -oC:\ > NUL # install gcc (needed for sqlite3) - choco install -y --limit-output mingw - set PATH=C:\tools\mingw64\bin;%PATH% @@ -23,12 +26,6 @@ install: - go env - go run build.go setup -before_build: - - cmd: if NOT "%buildTag%"=="" echo Building tag! %buildTag% - - cmd: if NOT "%buildTag%"=="" git fetch - - cmd: if NOT "%buildTag%"=="" git checkout %buildTag% - - cmd: echo Building tag? %buildTag% - build_script: - go run build.go build - grunt release