appveyor.yml 404 B

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