@@ -135,13 +135,14 @@ jobs:
135135 retention-days : ${{env.retention-days}}
136136 if-no-files-found : error
137137 # Make test report accessible from GitHub Actions (as Maven logs are long)
138- - name : Publish Test Report
139- if : success() || failure()
140- uses : mikepenz/action-junit-report@v6
141- env :
142- NODE_OPTIONS : " --max_old_space_size=9000"
143- with :
144- report_paths : ' **/target/*-reports/TEST-*.xml'
138+ # Remove? we skipping tests here
139+ # - name: Publish Test Report
140+ # if: success() || failure()
141+ # uses: mikepenz/action-junit-report@v6
142+ # env:
143+ # NODE_OPTIONS: "--max_old_space_size=9000"
144+ # with:
145+ # report_paths: '**/target/*-reports/TEST-*.xml'
145146 # Upload coverage results
146147 # As of 2024, looks like a rate limiter is breaking the build.
147148 # As such, now we only upload from master branch, hoping it is enough.
@@ -427,7 +428,7 @@ jobs:
427428 restore-keys : ${{ runner.os }}-m2
428429 - name : Build with Maven
429430 run :
430- mvn -P ${{ matrix.profile }} clean verify --fae
431+ mvn -P default-build, ${{ matrix.profile }} clean verify --fae
431432 env :
432433 CI_env : GithubAction
433434 - name : Publish Test Report
@@ -436,4 +437,5 @@ jobs:
436437 env :
437438 NODE_OPTIONS : " --max_old_space_size=9000"
438439 with :
440+ check_name : JUnit ${{ matrix.profile }}
439441 report_paths : ' **/target/*-reports/TEST-*.xml'
0 commit comments