From 8a783fcb7e1f3e2e9c010604325630aa29d853fc Mon Sep 17 00:00:00 2001 From: Matthew Dawson Date: Sat, 27 Feb 2016 23:21:24 -0500 Subject: [PATCH] Add appveyor.yml. Add an initial appveryor.yml to test on AppVeyor's Windows CI. --- appveyor.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..6e26e94 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,18 @@ +version: "{build}" + +os: Windows Server 2012 R2 + +clone_folder: c:\gopath\src\github.com\boltdb\bolt + +environment: + GOPATH: c:\gopath + +install: + - echo %PATH% + - echo %GOPATH% + - go version + - go env + - go get -v -t ./... + +build_script: + - go test -v ./...