Use golang 1.9 on AppVeyor CI

Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
This commit is contained in:
Kenfe-Mickael Laventure 2017-08-25 08:43:48 -07:00
parent 77b98f0590
commit 34c25e07e8
No known key found for this signature in database
GPG Key ID: 40CF16616B361216

View File

@ -11,9 +11,15 @@ branches:
environment: environment:
GOPATH: C:\gopath GOPATH: C:\gopath
CGO_ENABLED: 1 CGO_ENABLED: 1
GO_VERSION: 1.9
before_build: before_build:
- choco install -y mingw - choco install -y mingw
# Install Go
- rd C:\Go /s /q
- appveyor DownloadFile https://storage.googleapis.com/golang/go%GO_VERSION%.windows-amd64.zip
- 7z x go%GO_VERSION%.windows-amd64.zip -oC:\ >nul
- go version
# TODO: re-enable once the content unit-test have been updated to pass on windows # TODO: re-enable once the content unit-test have been updated to pass on windows
#- choco install codecov #- choco install codecov