grafana/appveyor.yml

37 lines
693 B
YAML
Raw Normal View History

version: "{build}"
os: Windows Server 2012 R2
clone_folder: c:\gopath\src\github.com\grafana\grafana
environment:
nodejs_version: "5"
GOPATH: c:\gopath
install:
# install nodejs and npm
- ps: Install-Product node $env:nodejs_version
- npm install
- npm install -g grunt-cli
# install gcc (needed for sqlite3)
- choco install -y --limit-output mingw
2015-04-19 14:31:42 -05:00
- set PATH=C:\tools\mingw64\bin;%PATH%
- echo %PATH%
- echo %GOPATH%
- go version
- go env
2015-04-19 13:45:18 -05:00
- go run build.go setup
build_script:
2015-04-19 13:45:18 -05:00
- go run build.go build
- grunt release
- cp dist/* .
artifacts:
- path: grafana-*windows-ia32.zip
name: binzip
2016-10-14 03:37:31 -05:00
deploy:
provider: Environment
name: GrafanaBuildsS3