aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Dawson <matthew@mjdsystems.ca>2016-02-27 23:21:24 -0500
committerMatthew Dawson <matthew@mjdsystems.ca>2016-02-27 23:34:11 -0500
commit8a783fcb7e1f3e2e9c010604325630aa29d853fc (patch)
tree523e1c103265adbe587c549fb8af3253af920bd1
parentMerge pull request #520 from bobintornado/project-list (diff)
downloaddedo-8a783fcb7e1f3e2e9c010604325630aa29d853fc.tar.gz
dedo-8a783fcb7e1f3e2e9c010604325630aa29d853fc.tar.xz
Add appveyor.yml.
Add an initial appveryor.yml to test on AppVeyor's Windows CI.
-rw-r--r--appveyor.yml18
1 files changed, 18 insertions, 0 deletions
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 ./...