Skip to content

Commit f6feb45

Browse files
committed
Updated to appveyor ci spec file
1 parent fbf4eac commit f6feb45

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.bra.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[run]
22
init_cmds = [
3-
["go", "build", "-o", "./bin/grafana-server.exe"],
4-
["./bin/grafana-server.exe"]
3+
["go", "build", "-o", "./bin/grafana-server"],
4+
["./bin/grafana-server"]
55
]
66
watch_all = true
77
watch_dirs = [
@@ -12,6 +12,6 @@ watch_dirs = [
1212
watch_exts = [".go", ".ini"]
1313
build_delay = 1500
1414
cmds = [
15-
["go", "build", "-o", "./bin/grafana-server.exe"],
16-
["./bin/grafana-server.exe"]
15+
["go", "build", "-o", "./bin/grafana-server"],
16+
["./bin/grafana-server"]
1717
]

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ install:
1212
- echo %GOPATH%
1313
- go version
1414
- go env
15-
- go get -v -t ./...
15+
- go run build.go setup
1616

1717
build_script:
18-
- go test -v ./pkg/...
18+
- go run build.go build

0 commit comments

Comments
 (0)