chore(build): 테스트 실행 메모리 설정을 조정한다
This commit is contained in:
@@ -99,9 +99,16 @@ tasks.withType<KotlinCompile> {
|
||||
}
|
||||
}
|
||||
|
||||
tasks.withType<Test> {
|
||||
useJUnitPlatform()
|
||||
maxHeapSize = "1536m"
|
||||
tasks.withType<Test>().configureEach {
|
||||
maxParallelForks = 1
|
||||
forkEvery = 100
|
||||
|
||||
maxHeapSize = "1024m"
|
||||
|
||||
jvmArgs(
|
||||
"-XX:MaxMetaspaceSize=512m",
|
||||
"-Dfile.encoding=UTF-8"
|
||||
)
|
||||
}
|
||||
|
||||
tasks.getByName<Jar>("jar") {
|
||||
|
||||
Reference in New Issue
Block a user