k3s/vendor/github.com/Microsoft/hcsshim/appveyor.yml

44 lines
1.4 KiB
YAML
Raw Normal View History

2019-01-12 04:58:27 +00:00
version: 0.1.{build}
image: Visual Studio 2017
clone_folder: c:\gopath\src\github.com\Microsoft\hcsshim
environment:
GOPATH: c:\gopath
2020-08-10 17:43:49 +00:00
PATH: "%GOPATH%\\bin;C:\\gometalinter-2.0.12-windows-amd64;%PATH%"
2019-07-10 00:29:38 +00:00
2020-08-10 17:43:49 +00:00
stack: go 1.13.4
2019-01-12 04:58:27 +00:00
build_script:
2019-07-10 00:29:38 +00:00
- appveyor DownloadFile https://github.com/alecthomas/gometalinter/releases/download/v2.0.12/gometalinter-2.0.12-windows-amd64.zip
- 7z x gometalinter-2.0.12-windows-amd64.zip -y -oC:\ > NUL
2019-01-12 04:58:27 +00:00
- gometalinter.exe --config .gometalinter.json ./...
2019-09-30 23:25:17 +00:00
- go build ./cmd/containerd-shim-runhcs-v1
2019-01-12 04:58:27 +00:00
- go build ./cmd/runhcs
- go build ./cmd/tar2ext4
2019-09-30 23:25:17 +00:00
- go build ./cmd/wclayer
- go build ./internal/tools/grantvmgroupaccess
- go build ./internal/tools/uvmboot
- go build ./internal/tools/zapdir
2019-01-12 04:58:27 +00:00
- go test -v ./... -tags admin
2020-08-10 17:43:49 +00:00
- cd test
- go test -v ./internal -tags admin
- go test -c ./containerd-shim-runhcs-v1/ -tags functional
- go test -c ./cri-containerd/ -tags functional
- go test -c ./functional/ -tags functional
- go test -c ./runhcs/ -tags functional
2019-01-12 04:58:27 +00:00
artifacts:
2019-09-30 23:25:17 +00:00
- path: 'containerd-shim-runhcs-v1.exe'
2019-01-12 04:58:27 +00:00
- path: 'runhcs.exe'
- path: 'tar2ext4.exe'
2019-09-30 23:25:17 +00:00
- path: 'wclayer.exe'
- path: 'grantvmgroupaccess.exe'
- path: 'uvmboot.exe'
- path: 'zapdir.exe'
2020-08-10 17:43:49 +00:00
- path: './test/containerd-shim-runhcs-v1.test.exe'
- path: './test/cri-containerd.test.exe'
- path: './test/functional.test.exe'
- path: './test/runhcs.test.exe'