mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
read the CI timescale factor from an environment variable
This commit is contained in:
parent
cfc7d1604d
commit
56155986e9
3 changed files with 12 additions and 6 deletions
|
@ -14,6 +14,9 @@ go:
|
||||||
# setting the GOARCH directly doesn't work, since the value will be overwritten later
|
# setting the GOARCH directly doesn't work, since the value will be overwritten later
|
||||||
# so set it to a temporary environment variable first
|
# so set it to a temporary environment variable first
|
||||||
env:
|
env:
|
||||||
|
global:
|
||||||
|
- TIMESCALE_FACTOR=20
|
||||||
|
matrix:
|
||||||
- TRAVIS_GOARCH=amd64 TESTMODE=unit
|
- TRAVIS_GOARCH=amd64 TESTMODE=unit
|
||||||
- TRAVIS_GOARCH=amd64 TESTMODE=integration
|
- TRAVIS_GOARCH=amd64 TESTMODE=integration
|
||||||
- TRAVIS_GOARCH=386 TESTMODE=unit
|
- TRAVIS_GOARCH=386 TESTMODE=unit
|
||||||
|
|
|
@ -5,6 +5,7 @@ os: Windows Server 2012 R2
|
||||||
environment:
|
environment:
|
||||||
GOPATH: c:\gopath
|
GOPATH: c:\gopath
|
||||||
CGO_ENABLED: 0
|
CGO_ENABLED: 0
|
||||||
|
TIMESCALE_FACTOR: 20
|
||||||
matrix:
|
matrix:
|
||||||
- GOARCH: 386
|
- GOARCH: 386
|
||||||
- GOARCH: amd64
|
- GOARCH: amd64
|
||||||
|
|
|
@ -4,6 +4,7 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"io"
|
"io"
|
||||||
"runtime"
|
"runtime"
|
||||||
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"os"
|
"os"
|
||||||
|
@ -34,9 +35,10 @@ var _ = Describe("Stream", func() {
|
||||||
// on the CIs, the timing is a lot less precise, so scale every duration by this factor
|
// on the CIs, the timing is a lot less precise, so scale every duration by this factor
|
||||||
scaleDuration := func(t time.Duration) time.Duration {
|
scaleDuration := func(t time.Duration) time.Duration {
|
||||||
scaleFactor := 1
|
scaleFactor := 1
|
||||||
if os.Getenv("CI") == "true" {
|
if f, err := strconv.Atoi(os.Getenv("TIMESCALE_FACTOR")); err == nil { // parsing "" errors, so this works fine if the env is not set
|
||||||
scaleFactor = 20
|
scaleFactor = f
|
||||||
}
|
}
|
||||||
|
Expect(scaleFactor).ToNot(BeZero())
|
||||||
return time.Duration(scaleFactor) * t
|
return time.Duration(scaleFactor) * t
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue