This is an automated email from the ASF dual-hosted git repository. jdaugherty pushed a commit to branch grails-geb in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 1d9d4713d753cf3a8780b60cbd3bf4eef49d0d4f Author: James Daugherty <[email protected]> AuthorDate: Sun Apr 20 18:21:58 2025 -0400 testing ci build performance - lower to 3 threads --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 0f857da9d6..5b891d5f9e 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ ext { grailsVersion = projectVersion isCiBuild = System.getenv().get('CI') as Boolean - configuredTestParallel = System.getProperty('maxTestParallel') as Integer ?: (isCiBuild ? 4 : Runtime.runtime.availableProcessors() * 3/4 as int ?: 1) + configuredTestParallel = System.getProperty('maxTestParallel') as Integer ?: (isCiBuild ? 3 : Runtime.runtime.availableProcessors() * 3/4 as int ?: 1) excludeUnusedTransDeps = findProperty('excludeUnusedTransDeps') // Directories created during the build which are related
