Files
containerd/.appveyor.yml
Sebastiaan van Stijn 34596c9c90 Bump Golang 1.13.15
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>
2020-08-08 15:10:30 +02:00

31 lines
685 B
YAML

version: "{build}"
image: Visual Studio 2019
clone_folder: c:\gopath\src\github.com\containerd\cri
environment:
GOPATH: C:\gopath
PATH: C:\go\bin;C:\tools\mingw64\bin;$(PATH)
CGO_ENABLED: 1
GO111MODULE: off
matrix:
- GO_VERSION: 1.13.15
install:
# Install Mingw
- choco install -y mingw --version 5.3.0
# 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
# Print powershell version
- ps: $psversiontable
build_script:
- bash.exe -elc "mingw32-make.exe"
test_script:
- bash.exe -elc "mingw32-make.exe test"