open-vault/vendor/github.com/fsouza/go-dockerclient/appveyor.yml

21 lines
524 B
YAML
Raw Normal View History

2017-02-26 21:53:19 +00:00
version: '{build}'
platform: x64
clone_depth: 2
clone_folder: c:\gopath\src\github.com\fsouza\go-dockerclient
environment:
GOPATH: c:\gopath
2017-04-17 15:17:06 +00:00
matrix:
- GOVERSION: 1.7.5
2017-05-24 13:40:58 +00:00
- GOVERSION: 1.8.1
2017-02-26 21:53:19 +00:00
install:
- 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:
- go get -d -t ./...
test_script:
2017-05-24 13:40:58 +00:00
- go test -v ./...
2017-04-17 15:17:06 +00:00
matrix:
fast_finish: true