Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
checkstyle = "10.25.0"
hadoop = "3.4.1"
iceberg = "1.9.0" # Ensure to update the iceberg version in regtests to keep regtests up-to-date
quarkus = "3.21.4"
quarkus = "3.23.3"
immutables = "2.10.1"
picocli = "4.7.7"
scala212 = "2.12.19"
Expand Down
3 changes: 3 additions & 0 deletions runtime/admin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ artifacts {
}

tasks.named<Test>("test").configure {
maxParallelForks = 4
// enlarge the max heap size to avoid out of memory error
maxHeapSize = "4g"
// Silence the 'OpenJDK 64-Bit Server VM warning: Sharing is only supported for boot loader
// classes because bootstrap classpath has been appended' warning from OpenJDK.
jvmArgs("-Xshare:off")
Expand Down
Loading