mirror of https://github.com/apache/kafka.git
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:
parent
b7294d92e1
commit
c920989205
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue