From ecab640a9a8b124098a662266d352a4fcb85572b Mon Sep 17 00:00:00 2001 From: lukasmartinelli Date: Wed, 2 Nov 2016 17:10:40 +0100 Subject: [PATCH] Add AppVeyor integration --- appveyor.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..a2da451c --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,31 @@ +# version format +version: "{build}" + +# Operating system (build VM template) +os: Windows Server 2012 R2 + +clone_folder: c:\gopath\src\github.com\maputnik\desktop + +# environment variables +environment: + GOPATH: c:\gopath + GO15VENDOREXPERIMENT: 1 + +# scripts that run after cloning repository +install: + - set PATH=%GOPATH%\bin;c:\go\bin;%PATH% + - go version + - go env + - go get + +# to run your custom scripts instead of automatic MSBuild +build_script: + - go vet ./... + - gofmt -s -l . + - make + +# to disable automatic tests +test: off + +# to disable deployment +deploy: off