Updated to appveyor ci spec file

This commit is contained in:
Torkel Odegaard 2015-04-19 20:45:18 +02:00
parent fbf4eac257
commit f6feb455a9
2 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
[run]
init_cmds = [
["go", "build", "-o", "./bin/grafana-server.exe"],
["./bin/grafana-server.exe"]
["go", "build", "-o", "./bin/grafana-server"],
["./bin/grafana-server"]
]
watch_all = true
watch_dirs = [
@ -12,6 +12,6 @@ watch_dirs = [
watch_exts = [".go", ".ini"]
build_delay = 1500
cmds = [
["go", "build", "-o", "./bin/grafana-server.exe"],
["./bin/grafana-server.exe"]
["go", "build", "-o", "./bin/grafana-server"],
["./bin/grafana-server"]
]

View File

@ -12,7 +12,7 @@ install:
- echo %GOPATH%
- go version
- go env
- go get -v -t ./...
- go run build.go setup
build_script:
- go test -v ./pkg/...
- go run build.go build