Skip to content
Snippets Groups Projects
Unverified Commit 547abf69 authored by ChenZhangg's avatar ChenZhangg Committed by GitHub
Browse files

Improve GRADLE build Performance

parent 381be701
Branches attachments
No related tags found
1 merge request!3Improve GRADLE build Performance
......@@ -16,4 +16,22 @@
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
allprojects {
tasks.withType(Test).configureEach {
maxParallelForks = 4
}
tasks.withType(Test).configureEach {
forkEvery = 100
}
tasks.withType(Test).configureEach {
reports.html.required = false
reports.junitXml.required = false
}
tasks.withType(JavaCompile).configureEach {
options.incremental = true
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment