full diff: https://github.com/golang/go/compare/go1.13.14...go1.13.15
go1.13.15 (released 2020/08/06) includes security fixes to the encoding/binary
package. See the Go 1.13.15 milestone on the issue tracker for details.
https://github.com/golang/go/issues?q=milestone%3AGo1.13.15+label%3ACherryPickApproved
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit 2315975272)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
24 lines
466 B
YAML
24 lines
466 B
YAML
version: "{build}"
|
|
|
|
clone_folder: c:\gopath\src\github.com\docker\cli
|
|
|
|
environment:
|
|
GOPATH: c:\gopath
|
|
GOVERSION: 1.13.15
|
|
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
|