go1.10.3 (released 2018/06/05) includes fixes to the go command, and the crypto/tls, crypto/x509, and strings packages. In particular, it adds minimal support to the go command for the vgo transition. See the Go 1.10.3 milestone on our issue tracker for details; https://github.com/golang/go/issues?q=milestone%3AGo1.10.3 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
23 lines
464 B
YAML
23 lines
464 B
YAML
version: "{build}"
|
|
|
|
clone_folder: c:\gopath\src\github.com\docker\cli
|
|
|
|
environment:
|
|
GOPATH: c:\gopath
|
|
GOVERSION: 1.10.3
|
|
DEPVERSION: v0.4.1
|
|
|
|
install:
|
|
- rmdir c:\go /s /q
|
|
- appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-amd64.msi
|
|
- msiexec /i go%GOVERSION%.windows-amd64.msi /q
|
|
- go version
|
|
- go env
|
|
|
|
deploy: false
|
|
|
|
build_script:
|
|
- ps: .\scripts\make.ps1 -Binary
|
|
|
|
test_script:
|
|
- ps: .\scripts\make.ps1 -TestUnit |