seregamorph opened a new pull request, #852: URL: https://github.com/apache/maven-surefire/pull/852
Example usage of https://github.com/seregamorph/maven-turbo-reactor in combination with [maven-surefire-cached extension](https://github.com/seregamorph/maven-surefire-cached), the extension to boost standard Maven Reactor. See detailed [project readme](https://github.com/seregamorph/maven-turbo-reactor/blob/master/README.md) and [presentation board](https://miro.com/app/board/uXjVLYUPRas=/). Checkout the branch and compare the build with standard reactor and with Turbo builder. Standard reactor: ```shell mvn clean verify -T8 -DskipCache=false ``` The build takes around `2m56s`. Note, that build caching is **intentionally disabled** to highlight the behavior of the extension for the worst case (the caching is supported). Now try with Turbo builder: ```shell mvn clean verify -T8 -DskipCache -b turbo ``` The build takes `2m21s`!. Now you can try with enabled build cache (enabled by default), run at least twice: ``` mvn clean verify -T8 ``` The build takes just `21s`. The Turbo reactor is compatible with maven surefire cached extension. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org