Skip to content

Commit 2c25661

Browse files
authored
Merge branch 'master' into git-cli-version-metadata
2 parents 63c4913 + 41c6ef4 commit 2c25661

23 files changed

Lines changed: 715 additions & 14 deletions

.github/workflows/main.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
java-version: '17'
167167

168168
- name: Setup the XCode version to 15.1.0
169-
uses: maxim-lobanov/setup-xcode@60606e260d2fc5762a71e64e74b2174e8ea3c8bd # v1.6.0
169+
uses: maxim-lobanov/setup-xcode@ed7a3b1fda3918c0306d1b724322adc0b8cc0a90 # v1.7.0
170170
with:
171171
xcode-version: '15.1.0'
172172

@@ -256,8 +256,6 @@ jobs:
256256
deploy: false
257257
- jdk: 21
258258
deploy: false
259-
- jdk: 25
260-
deploy: false
261259

262260
steps:
263261
- name: Clone the repo

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,3 +109,18 @@ You can run the "jme3-examples" app:
109109
You can restore the project to a pristine state:
110110
+ using Bash or Fish or PowerShell or Zsh: `./gradlew clean`
111111
+ using Windows Command Prompt: `.\gradlew clean`
112+
113+
## Running Tests
114+
115+
To run all tests and generate a JaCoCo code coverage report, run the `testCodeCoverageReport` Gradle task. To avoid the generation of the report, use the `test` task instead.
116+
117+
This runs all subproject tests and produces two sets of HTML reports:
118+
119+
- **Aggregated report** (all modules combined):
120+
`build/reports/jacoco/testCodeCoverageReport/html/index.html`
121+
- **Per-module reports**:
122+
`<module>/build/reports/jacoco/test/html/index.html`
123+
124+
A summary index linking to every per-module report is also generated at:
125+
`build/reports/jacoco/index.html`
126+

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,8 @@ ext {
173173
ndkExists = false
174174
}
175175

176+
apply from: 'gradle/jacoco.gradle'
177+
176178
task configureAndroidNDK {
177179
def ndkBuildFile = "ndk-build"
178180
// if windows, use ndk-build.cmd instead

0 commit comments

Comments
 (0)