Skip to content

Commit

Permalink
Reverting the memory used by gradle to the default one
Browse files Browse the repository at this point in the history
  • Loading branch information
fmacleal committed Feb 8, 2024
1 parent 603b848 commit e57b7dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rskj-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ test {
logger.lifecycle("Running test: ${descriptor}")
}

jvmArgs '-Xss128m', '-Xmx6G'
jvmArgs '-Xss32m', '-Xmx3G'

testLogging {
events "failed"
Expand All @@ -63,7 +63,7 @@ jacocoTestReport {
task parallelTest(type: Test) {
useJUnitPlatform()
//increase heap memory
jvmArgs '-Xss128m', '-Xmx6G'
jvmArgs '-Xss64m', '-Xmx3G'
//stop build after the first failing test
failFast = project.hasProperty("failFast")
//option to use the half of the available cores (it can be increased but there is no too much difference)
Expand Down

0 comments on commit e57b7dc

Please sign in to comment.