Add AppVeyor integration

This commit is contained in:
lukasmartinelli
2016-11-02 17:10:40 +01:00
parent f8cb0619f3
commit ecab640a9a

31
appveyor.yml Normal file
View File

@@ -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