Skip to content

Commit e16fc66

Browse files
committed
try max heap
1 parent 5024e77 commit e16fc66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,9 +239,9 @@ val testDurations = mutableListOf<TestDuration>()
239239

240240
tasks {
241241
withType<Test> {
242-
if (System.getenv("GITHUB_ACTIONS")?.toBooleanStrictOrNull() == true) {
242+
if (System.getenv("GITHUB_ACTIONS") != null) {
243243
minHeapSize = "1g"
244-
maxHeapSize = "6g"
244+
maxHeapSize = "7g"
245245
} else {
246246
minHeapSize = "32g"
247247
maxHeapSize = "120g"

0 commit comments

Comments
 (0)