Files
quic-go/appveyor.yml
Marten Seemann 22b36a783b increase the TIMESCALE factor on AppVeyor
This hopefully makes timing-based tests less flaky.
2020-01-03 17:05:19 +07:00

35 lines
883 B
YAML

version: "{build}"
os: Windows Server 2012 R2
environment:
GOPATH: c:\gopath
CGO_ENABLED: 0
TIMESCALE_FACTOR: 40
matrix:
- GOARCH: 386
- GOARCH: amd64
clone_folder: c:\gopath\src\github.com\lucas-clemente\quic-go
install:
- rmdir c:\go /s /q
- appveyor-retry appveyor DownloadFile https://storage.googleapis.com/golang/go1.13.windows-amd64.zip
- 7z x go1.13.windows-amd64.zip -y -oC:\ > NUL
- set PATH=%PATH%;%GOPATH%\bin\windows_%GOARCH%;%GOPATH%\bin
- set GO111MODULE=on
- echo %PATH%
- echo %GOPATH%
- appveyor-retry go get github.com/onsi/ginkgo/ginkgo
- appveyor-retry go get github.com/onsi/gomega
- go version
- go env
build_script:
- ginkgo -r -v -randomizeAllSpecs -randomizeSuites -trace -skipPackage benchmark,integrationtests
- ginkgo -randomizeAllSpecs -randomizeSuites -trace benchmark -- -size=10
test: off
deploy: off