MINOR Set min and max heap for Checkstyle (#18071)

This patch sets the max heap for Checkstyle to 1g to avoid OOM during the CI build

Reviewers: David Arthur <mumrah@gmail.com>
This commit is contained in:
TaiJuWu 2024-12-06 23:40:21 +08:00 committed by GitHub
parent b7294d92e1
commit c920989205
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -203,6 +203,11 @@ allprojects {
options.links "https://docs.oracle.com/en/java/javase/${JavaVersion.current().majorVersion}/docs/api/"
}
tasks.withType(Checkstyle) {
minHeapSize = "200m"
maxHeapSize = "1g"
}
clean {
delete "${projectDir}/src/generated"
delete "${projectDir}/src/generated-test"