appveyor.yml 416 B

12345678910111213141516171819202122232425262728
  1. os: Visual Studio 2017
  2. platform: x64
  3. branches:
  4. only:
  5. - master
  6. version: "1.0.{build}"
  7. # Clone directly into GOPATH.
  8. clone_folder: C:\gopath\src\v2ray.com\core
  9. clone_depth: 5
  10. environment:
  11. global:
  12. GOPATH: C:\gopath
  13. install:
  14. - git submodule update --init
  15. - go version
  16. - go get -u v2ray.com/core/...
  17. - go get -u v2ray.com/ext/...
  18. build: off
  19. test_script:
  20. - go test -p 1 -v v2ray.com/core/...