appveyor.yml 840 B

12345678910111213141516171819202122232425262728293031323334
  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. clone_folder: c:\gopath\src\github.com\lucas-clemente\quic-go
  11. install:
  12. - rmdir c:\go /s /q
  13. - appveyor DownloadFile https://storage.googleapis.com/golang/go1.11.windows-amd64.zip
  14. - 7z x go1.11.windows-amd64.zip -y -oC:\ > NUL
  15. - set PATH=%PATH%;%GOPATH%\bin\windows_%GOARCH%;%GOPATH%\bin
  16. - echo %PATH%
  17. - echo %GOPATH%
  18. - go get github.com/onsi/ginkgo/ginkgo
  19. - go get github.com/onsi/gomega
  20. - go version
  21. - go env
  22. - go get -v -t ./...
  23. build_script:
  24. - ginkgo -r -v -randomizeAllSpecs -randomizeSuites -trace -skipPackage benchmark,integrationtests
  25. - ginkgo -randomizeAllSpecs -randomizeSuites -trace benchmark -- -samples=1
  26. test: off
  27. deploy: off