appveyor.yml 422 B

12345678910111213141516171819202122232425262728293031
  1. image: Visual Studio 2017
  2. platform:
  3. - x64
  4. - x86
  5. branches:
  6. only:
  7. - master
  8. version: "1.0.{build}"
  9. stack: "go 1.11"
  10. environment:
  11. global:
  12. GOPATH: C:\gopath
  13. install:
  14. - go version
  15. - go get -u v2ray.com/core/...
  16. - go get -u v2ray.com/ext/...
  17. build_script:
  18. - go build v2ray.com/core/main
  19. - go build v2ray.com/ext/tools/control/main
  20. build: off
  21. test_script:
  22. - go test -p 1 -v v2ray.com/core/...