appveyor.yml 878 B

12345678910111213141516171819202122232425262728293031323334353637
  1. version: "{build}"
  2. os: Windows Server 2012 R2
  3. environment:
  4. GOPATH: c:\gopath
  5. CGO_ENABLED: 0
  6. TIMESCALE_FACTOR: 20
  7. matrix:
  8. - GOARCH: 386
  9. - GOARCH: amd64
  10. hosts:
  11. quic.clemente.io: 127.0.0.1
  12. clone_folder: c:\gopath\src\github.com\lucas-clemente\quic-go
  13. install:
  14. - rmdir c:\go /s /q
  15. - appveyor DownloadFile https://storage.googleapis.com/golang/go1.11.windows-amd64.zip
  16. - 7z x go1.11.windows-amd64.zip -y -oC:\ > NUL
  17. - set PATH=%PATH%;%GOPATH%\bin\windows_%GOARCH%;%GOPATH%\bin
  18. - echo %PATH%
  19. - echo %GOPATH%
  20. - go get github.com/onsi/ginkgo/ginkgo
  21. - go get github.com/onsi/gomega
  22. - go version
  23. - go env
  24. - go get -v -t ./...
  25. build_script:
  26. - ginkgo -r -v -randomizeAllSpecs -randomizeSuites -trace -skipPackage benchmark,integrationtests
  27. - ginkgo -randomizeAllSpecs -randomizeSuites -trace benchmark -- -samples=1
  28. test: off
  29. deploy: off