appveyor.yml 657 B

1234567891011121314151617181920212223242526272829
  1. version: "{build}"
  2. image: Visual Studio 2017
  3. clone_folder: c:\gopath\src\gotest.tools
  4. environment:
  5. PATH: c:\go110\bin;%PATH%
  6. GOROOT: c:\go110
  7. GOPATH: c:\gopath
  8. DEPVERSION: v0.4.1
  9. init:
  10. - git config --global core.symlinks true
  11. install:
  12. - go version
  13. - go env
  14. deploy: false
  15. build_script:
  16. - appveyor DownloadFile https://github.com/golang/dep/releases/download/%DEPVERSION%/dep-windows-amd64.exe
  17. - appveyor DownloadFile https://github.com/gotestyourself/gotestsum/releases/download/v0.3.0/gotestsum_0.3.0_windows_amd64.tar.gz
  18. - tar -xzf gotestsum_0.3.0_windows_amd64.tar.gz
  19. - dep-windows-amd64.exe ensure
  20. test_script:
  21. - gotestsum