@@ -51,14 +51,19 @@ jobs:
5151 working-directory : ' grails-gradle'
5252 run : >
5353 ./gradlew build
54- --continue --stacktrace -PskipTests
54+ --continue
55+ --stacktrace
56+ -PskipCodeStyle
57+ -PskipTests
5558 - name : " 🔨 Build project with tests"
5659 if : ${{ !contains(github.event.head_commit.message, '[skip tests]') }}
5760 working-directory : ' grails-gradle'
5861 run : >
5962 ./gradlew build
60- --continue --stacktrace
63+ --continue
64+ --stacktrace
6165 --rerun-tasks
66+ -PskipCodeStyle
6267 build :
6368 if : ${{ !contains(github.event.head_commit.message, '[skip tests]') }}
6469 name : ' Build Grails-Core'
8590 - name : " 🔨 Build project"
8691 run : >
8792 ./gradlew build :grails-shell-cli:installDist groovydoc
88- --continue --stacktrace -PonlyCoreTests
93+ --continue
8994 --rerun-tasks
95+ --stacktrace
96+ -PonlyCoreTests
97+ -PskipCodeStyle
9098 buildForge :
9199 name : " Build Grails Forge"
92100 strategy :
@@ -113,14 +121,19 @@ jobs:
113121 working-directory : ' grails-forge'
114122 run : >
115123 ./gradlew build
116- --continue --stacktrace -PskipTests
124+ --continue
125+ --stacktrace
126+ -PskipCodeStyle
127+ -PskipTests
117128 - name : " 🔨 Build project with tests"
118129 if : ${{ !contains(github.event.head_commit.message, '[skip tests]') }}
119130 working-directory : ' grails-forge'
120131 run : >
121132 ./gradlew build
122- --continue --stacktrace
133+ --continue
123134 --rerun-tasks
135+ --stacktrace
136+ -PskipCodeStyle
124137 - name : " ✅ Verify combined CLI"
125138 run : |
126139 cd grails-forge
@@ -162,11 +175,13 @@ jobs:
162175 - name : " 🏃 Run Functional Tests"
163176 run : >
164177 ./gradlew bootJar check
165- --continue --stacktrace
178+ --continue
179+ --rerun-tasks
180+ --stacktrace
166181 -PonlyFunctionalTests
182+ -PskipCodeStyle
167183 -PskipHibernate5Tests
168184 -PskipMongodbTests
169- --rerun-tasks
170185 mongodbFunctional :
171186 if : ${{ !contains(github.event.head_commit.message, '[skip tests]') }}
172187 name : " Mongodb Functional Tests"
@@ -195,10 +210,12 @@ jobs:
195210 GITHUB_MAVEN_PASSWORD : ${{ secrets.GITHUB_TOKEN }}
196211 run : >
197212 ./gradlew bootJar cleanTest check
198- --continue --stacktrace
213+ --continue
214+ --rerun-tasks
215+ --stacktrace
199216 -PonlyMongodbTests
200217 -PmongodbContainerVersion=${{ matrix.mongodb-version }}
201- --rerun-tasks
218+ -PskipCodeStyle
202219 hibernate5Functional :
203220 if : ${{ !contains(github.event.head_commit.message, '[skip tests]') }}
204221 name : " Hibernate5 Functional Tests"
@@ -226,9 +243,11 @@ jobs:
226243 GITHUB_MAVEN_PASSWORD : ${{ secrets.GITHUB_TOKEN }}
227244 run : >
228245 ./gradlew bootJar cleanTest check
229- --continue --stacktrace
230- -PonlyHibernate5Tests
246+ --continue
231247 --rerun-tasks
248+ --stacktrace
249+ -PonlyHibernate5Tests
250+ -PskipCodeStyle
232251 publishGradle :
233252 if : github.repository_owner == 'apache' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
234253 needs : [ buildGradle ]
@@ -256,7 +275,9 @@ jobs:
256275 working-directory : ' grails-gradle'
257276 run : >
258277 ./gradlew publish aggregateChecksums aggregatePublishedArtifacts
259- -Dorg.gradle.internal.publish.checksums.insecure=true --no-build-cache --rerun-tasks
278+ --no-build-cache
279+ --rerun-tasks
280+ -Dorg.gradle.internal.publish.checksums.insecure=true
260281 - name : " 📤 Upload grails-gradle checksums"
261282 uses : actions/upload-artifact@v4
262283 with :
0 commit comments