From: Gabriel Rosenhouse Date: Mon, 23 Oct 2017 06:21:14 +0000 (-0700) Subject: ci: add appveyor file for Windows CI coverage X-Git-Url: https://git.halfball.org/?a=commitdiff_plain;h=449ac26e38c6ff6ecd25596482c4b719d176a742;p=cni.git ci: add appveyor file for Windows CI coverage --- diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000..6bd301b --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,17 @@ +clone_folder: c:\gopath\src\github.com\containernetworking\cni + +environment: + GOPATH: c:\gopath + +install: + - echo %PATH% + - echo %GOPATH% + - set PATH=%GOPATH%\bin;c:\go\bin;%PATH% + - go version + - go env + +build: off + +test_script: + - go get -t ./... + - go test -v ./...