aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-12-10 10:58:16 +0800
committerGitHub <noreply@github.com>2018-12-10 10:58:16 +0800
commit94b24517ce7d1ab120bde7036551448fc0b27220 (patch)
tree4b628c4f2ad8ea0a155e7026365a5a626b6cd445 /core
parent7654e95f94f4902eb624bcdae1e6c8ebbf38e289 (diff)
downloadtangerine-consensus-94b24517ce7d1ab120bde7036551448fc0b27220.tar
tangerine-consensus-94b24517ce7d1ab120bde7036551448fc0b27220.tar.gz
tangerine-consensus-94b24517ce7d1ab120bde7036551448fc0b27220.tar.bz2
tangerine-consensus-94b24517ce7d1ab120bde7036551448fc0b27220.tar.lz
tangerine-consensus-94b24517ce7d1ab120bde7036551448fc0b27220.tar.xz
tangerine-consensus-94b24517ce7d1ab120bde7036551448fc0b27220.tar.zst
tangerine-consensus-94b24517ce7d1ab120bde7036551448fc0b27220.zip
core: Longer lambda for TravisCI (#365)
* Longer time for TravisCI. * Update CI setting for PR
Diffstat (limited to 'core')
-rw-r--r--core/consensus_test.go5
-rw-r--r--core/utils.go12
2 files changed, 16 insertions, 1 deletions
diff --git a/core/consensus_test.go b/core/consensus_test.go
index 65f4e36..5fb804b 100644
--- a/core/consensus_test.go
+++ b/core/consensus_test.go
@@ -533,6 +533,9 @@ func (s *ConsensusTestSuite) TestDKGCRS() {
n = 7
lambda = 100 * time.Millisecond
}
+ if isTravisCI() {
+ lambda *= 5
+ }
conn := s.newNetworkConnection()
prvKeys, pubKeys, err := test.NewKeys(n)
s.Require().NoError(err)
@@ -549,7 +552,7 @@ func (s *ConsensusTestSuite) TestDKGCRS() {
con.cfgModule.registerDKG(uint64(0), n/3+1)
}
for _, con := range cons {
- con.runDKG(0, gov.Configuration(0))
+ go con.runDKG(0, gov.Configuration(0))
}
for _, con := range cons {
func() {
diff --git a/core/utils.go b/core/utils.go
index bc5e336..2ef2437 100644
--- a/core/utils.go
+++ b/core/utils.go
@@ -219,3 +219,15 @@ func DiffUint64(a, b uint64) uint64 {
}
return b - a
}
+
+func isCI() bool {
+ return os.Getenv("CI") != ""
+}
+
+func isCircleCI() bool {
+ return isCI() && os.Getenv("CIRCLECI") == "true"
+}
+
+func isTravisCI() bool {
+ return isCI() && os.Getenv("TRAVIS") == "true"
+}