appveyor.yml 601 B

12345678910111213141516171819202122232425262728293031
  1. version: "{build}"
  2. os: Windows Server 2012 R2
  3. clone_folder: c:\gopath\src\github.com\grafana\grafana
  4. environment:
  5. nodejs_version: "5"
  6. GOPATH: c:\gopath
  7. install:
  8. # install nodejs and npm
  9. - ps: Install-Product node $env:nodejs_version
  10. - npm install
  11. - npm install -g grunt-cli
  12. # install gcc (needed for sqlite3)
  13. - choco install -y --limit-output mingw
  14. - set PATH=C:\tools\mingw64\bin;%PATH%
  15. - echo %PATH%
  16. - echo %GOPATH%
  17. - go version
  18. - go env
  19. - go run build.go setup
  20. build_script:
  21. - go run build.go build
  22. - grunt release
  23. artifacts:
  24. - path: dist/*
  25. name: binzip