From a276bd810871c2ebdb950f8a568d7887f307dee5 Mon Sep 17 00:00:00 2001 From: Matthew Fisher Date: Thu, 8 Nov 2018 14:22:09 -0800 Subject: [PATCH] add appveyor for testing on Windows (#4136) Signed-off-by: Matthew Fisher --- .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 000000000..d7ba1d9fd --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,17 @@ +version: "{build}" +clone_folder: c:\go\src\k8s.io\helm +environment: + GOPATH: c:\go + PATH: c:\ProgramData\bin;$(PATH) +install: + - ps: iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/fishworks/gofish/master/scripts/install.ps1')) + - gofish init + - gofish install dep + - dep ensure -v +cache: + - vendor -> Gopkg.lock +build: "off" +deploy: "off" +test_script: + - go build .\cmd\... + - go test .\...