This is an automated email from the ASF dual-hosted git repository. jamesfredley pushed a commit to branch fix/groovy-joint-ci-stability in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 47fbfb5789ce466ac715524bc3f4a1c4e94356ec Author: James Fredley <[email protected]> AuthorDate: Tue Mar 3 12:35:51 2026 -0500 Improve Groovy Joint Validation Build CI stability Add --continue so a single flaky test failure does not abort the entire 45-minute build. Add --stacktrace for better failure diagnostics (matching the main CI workflow). Reduce maxTestParallel from 4 to 2 to lower memory pressure - the joint build runs all tests (unit, integration, functional, MongoDB) in a single job alongside the Gradle daemon (5G) and MongoDB container on a 7GB runner. Assisted-by: Claude Code <[email protected]> --- .github/workflows/groovy-joint-workflow.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/groovy-joint-workflow.yml b/.github/workflows/groovy-joint-workflow.yml index c81bc749ac..ab04bc62cc 100644 --- a/.github/workflows/groovy-joint-workflow.yml +++ b/.github/workflows/groovy-joint-workflow.yml @@ -158,7 +158,10 @@ jobs: - name: "🔨 Build and test Grails using the locally built Groovy snapshot" run: > ./gradlew build + --continue + --stacktrace -x groovydoc -PskipCodeStyle + -PmaxTestParallel=2 env: GRAILS_INCLUDE_MAVEN_LOCAL: true \ No newline at end of file
