appveyor.yml 339 B

123456789101112131415161718192021222324
  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. test_script:
  17. - go test -p 1 -v v2ray.com/core/...