Skip to content

Commit

Permalink
Merge pull request #5993 from hashicorp/b-appveyor-go1.11
Browse files Browse the repository at this point in the history
use go1.11 in windows CI
  • Loading branch information
Mahmood Ali committed Jul 26, 2019
2 parents e76bb99 + 0a10832 commit beeb31e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@ install:
- cmd: docker info
- cmd: docker run --rm dantoml/busybox-windows:08012019 echo hi there

- cmd: |
cd C:\go
del /F/Q/S *.* > NUL
cd %APPVEYOR_BUILD_FOLDER%
rmdir /Q/S C:\go
# install go 1.11.11 to match version used for cutting a release
- cmd: |
mkdir c:\go
appveyor DownloadFile "https://dl.google.com/go/go1.11.11.windows-amd64.zip" -FileName "%TEMP%\\go.zip"
- ps: Expand-Archive $Env:TEMP\go.zip -DestinationPath C:\

- cmd: set PATH=%GOBIN%;c:\go\bin;%PATH%
- cmd: echo %Path%
- cmd: go version
Expand Down

0 comments on commit beeb31e

Please sign in to comment.