appveyor.yml 579 B

1234567891011121314151617181920212223242526272829303132
  1. # version format
  2. version: "{build}"
  3. # Operating system (build VM template)
  4. os: Windows Server 2012 R2
  5. # Platform.
  6. platform: x64
  7. clone_folder: c:\gopath\src\github.com\minio\sha256-simd
  8. # environment variables
  9. environment:
  10. GOPATH: c:\gopath
  11. GO15VENDOREXPERIMENT: 1
  12. # scripts that run after cloning repository
  13. install:
  14. - set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
  15. - go version
  16. - go env
  17. # to run your custom scripts instead of automatic MSBuild
  18. build_script:
  19. - go test .
  20. - go test -race .
  21. # to disable automatic tests
  22. test: off
  23. # to disable deployment
  24. deploy: off