Skip to content

Commit 56bd2c8

Browse files
committed
CI: drop publishing of test results
Does not work on forks, is not working properly anyway and log output highlighting has improved.
1 parent 0441421 commit 56bd2c8

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/build-and-test.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,8 @@ jobs:
2525
java-version: '21'
2626
cache: 'maven'
2727
- name: Build with Maven
28+
# --batch-mode: Disable interactive input, making logs cleaner for CI.
29+
# -show-version: Print Maven and JDK version info.
30+
# --update-snapshots: Force update of snapshot dependencies.
31+
# --errors: Show full error stack traces on failure.
2832
run: ./mvnw --batch-mode -show-version --update-snapshots --errors package
29-
- name: Publish Unit Test Results
30-
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5 # v1.9.1
31-
if: always() # also run if build step failed
32-
with:
33-
name: JUnit Report
34-
path: target/surefire-reports/*.xml
35-
reporter: java-junit

pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@
144144
<tagNameFormat>v@{project.version}</tagNameFormat>
145145
</configuration>
146146
</plugin>
147-
<!-- Explicitly specify surefire version for CircleCI -->
148147
<plugin>
149148
<groupId>org.apache.maven.plugins</groupId>
150149
<artifactId>maven-surefire-plugin</artifactId>

0 commit comments

Comments
 (0)