From 555a2d73595763c5dd41ad5aabaab9640b938445 Mon Sep 17 00:00:00 2001 From: Matthew Fisher Date: Wed, 6 Mar 2019 12:59:44 -0800 Subject: [PATCH] remove appveyor AppVeyor has been more detrimental than actually helpful with regards to CI testing: - Users are unable to re-build their own failing PRs. A project admin has to rebuild the PR - The project somehow mixes up bacongobbler/helm with Helm/helm when observing CI status - The only contributors able to test legitimate Windows failures lands on the shoulders of contributors with Windows devices This removes Appveyor from Helm 3 testing until we can figure out a better solution. Signed-off-by: Matthew Fisher --- .appveyor.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml deleted file mode 100644 index a7063238d..000000000 --- a/.appveyor.yml +++ /dev/null @@ -1,20 +0,0 @@ -version: "{build}" -clone_folder: c:\go\src\k8s.io\helm -environment: - GOPATH: c:\go - GOCACHE: c:\go\cache - 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 - - go version - - dep ensure -vendor-only -v -cache: - - c:\go\pkg\dep -> Gopkg.lock - - c:\go\cache -build: "off" -deploy: "off" -test_script: - - go build .\cmd\... - - go test .\...