Skip to content

Commit

Permalink
Merge pull request #1072 from ChenZhangg/Modify_GRADLE_3
Browse files Browse the repository at this point in the history
Improve GRADLE build performance

 * parallelize (batches of 100 tests)
 * disable GRADLE reports
  • Loading branch information
kurahaupo authored Oct 26, 2021
2 parents bf3e132 + 9131202 commit 2a6fad7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ buildscript {
}

allprojects {
tasks.withType(Test).configureEach {
maxParallelForks = 4
forkEvery = 100
reports.html.required = false
reports.junitXml.required = false
}

repositories {
jcenter()
maven { url "https://maven.google.com" }
Expand Down

0 comments on commit 2a6fad7

Please sign in to comment.