2020-03-30 19:10:53 +00:00
|
|
|
version: "{build}"
|
2016-09-23 20:43:03 +00:00
|
|
|
platform: x64
|
|
|
|
clone_depth: 2
|
|
|
|
clone_folder: c:\gopath\src\github.com\fsouza\go-dockerclient
|
|
|
|
environment:
|
|
|
|
GOPATH: c:\gopath
|
2020-03-30 19:10:53 +00:00
|
|
|
GOPROXY: https://proxy.golang.org
|
|
|
|
GO111MODULE: on
|
2017-08-10 16:19:19 +00:00
|
|
|
matrix:
|
2020-03-30 19:10:53 +00:00
|
|
|
- GOVERSION: "1.12.17"
|
|
|
|
- GOVERSION: "1.13.8"
|
|
|
|
- GOVERSION: "1.14rc1"
|
2016-09-23 20:43:03 +00:00
|
|
|
install:
|
2020-03-30 19:10:53 +00:00
|
|
|
- choco install make
|
2016-09-23 20:43:03 +00:00
|
|
|
- set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
|
|
|
|
- rmdir c:\go /s /q
|
|
|
|
- appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-amd64.zip
|
|
|
|
- 7z x go%GOVERSION%.windows-amd64.zip -y -oC:\ > NUL
|
|
|
|
build_script:
|
2020-03-30 19:10:53 +00:00
|
|
|
- make pretest
|
2017-02-15 01:34:05 +00:00
|
|
|
test_script:
|
2020-03-30 19:10:53 +00:00
|
|
|
- make gotest
|
2017-08-10 16:19:19 +00:00
|
|
|
matrix:
|
|
|
|
fast_finish: true
|