ci: add appveyor file for Windows CI coverage
authorGabriel Rosenhouse <grosenhouse@pivotal.io>
Mon, 23 Oct 2017 06:21:14 +0000 (23:21 -0700)
committerGabriel Rosenhouse <grosenhouse@pivotal.io>
Mon, 23 Oct 2017 06:21:14 +0000 (23:21 -0700)
.appveyor.yml [new file with mode: 0644]

diff --git a/.appveyor.yml b/.appveyor.yml
new file mode 100644 (file)
index 0000000..6bd301b
--- /dev/null
@@ -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 ./...