From 449ac26e38c6ff6ecd25596482c4b719d176a742 Mon Sep 17 00:00:00 2001 From: Gabriel Rosenhouse Date: Sun, 22 Oct 2017 23:21:14 -0700 Subject: [PATCH] ci: add appveyor file for Windows CI coverage --- .appveyor.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .appveyor.yml 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 ./... -- 2.44.0