Skip to content

Commit

Permalink
Add memory limit to tosca tests (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
wsodsong authored Jun 4, 2024
1 parent b224d68 commit 4065faa
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
2 changes: 2 additions & 0 deletions tosca/compliance-tests.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ pipeline {

environment {
GOROOT = '/usr/lib/go-1.21/'
GOGC = '50'
GOMEMLIMIT = '30GiB'
}

parameters {
Expand Down
4 changes: 3 additions & 1 deletion tosca/validate-evmzero.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ pipeline {
}

environment {
GOROOT = '/usr/lib/go-1.21/'
GOROOT = '/usr/lib/go-1.21/'
GOGC = '50'
GOMEMLIMIT = '60GiB'
}

parameters {
Expand Down
4 changes: 3 additions & 1 deletion tosca/validate-geth.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ pipeline {
}

environment {
GOROOT = '/usr/lib/go-1.21/'
GOROOT = '/usr/lib/go-1.21/'
GOGC = '50'
GOMEMLIMIT = '60GiB'
}

parameters {
Expand Down
4 changes: 3 additions & 1 deletion tosca/validate-lfvm-si.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ pipeline {
}

environment {
GOROOT = '/usr/lib/go-1.21/'
GOROOT = '/usr/lib/go-1.21/'
GOGC = '50'
GOMEMLIMIT = '60GiB'
}

parameters {
Expand Down
4 changes: 3 additions & 1 deletion tosca/validate-lfvm.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ pipeline {
}

environment {
GOROOT = '/usr/lib/go-1.21/'
GOROOT = '/usr/lib/go-1.21/'
GOGC = '50'
GOMEMLIMIT = '60GiB'
}

parameters {
Expand Down

0 comments on commit 4065faa

Please sign in to comment.