File tree Expand file tree Collapse file tree 2 files changed +18
-14
lines changed
Expand file tree Collapse file tree 2 files changed +18
-14
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,15 @@ jobs:
2727 - name : Upload to Codecov
2828 run : bash <(curl -s https://codecov.io/bash)
2929 if : ${{ github.repository == 'apache/helix' && github.event_name == 'push' && (success() || failure()) }}
30- - name : Generate Test Report
31- uses : dorny/test-reporter@v1
32- if : ${{ success() || failure() }}
33- with :
34- name : Tests Results
35- path : ' ./**/target/surefire-reports/TEST-TestSuite.xml'
36- reporter : java-junit
30+ # Temporarily disabled due to enterprise policy restriction
31+ # TODO: Re-enable once an approved alternative is found
32+ # - name: Generate Test Report
33+ # uses: dorny/test-reporter@v1
34+ # if: ${{ success() || failure() }}
35+ # with:
36+ # name: Tests Results
37+ # path: './**/target/surefire-reports/TEST-TestSuite.xml'
38+ # reporter: java-junit
3739 - name : Upload Unit Test Results as Artifacts
3840 if : failure()
3941 uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -36,13 +36,15 @@ jobs:
3636 run : mvn clean install -Dmaven.test.skip.exec=true -DretryFailedDeploymentCount=5
3737 - name : Run All Tests
3838 run : mvn -B -V -e -ntp "-Dstyle.color=always" ${{ github.event.inputs.mvnOpts }} ${{ github.event.inputs.goals }}
39- - name : Test Report
40- uses : dorny/test-reporter@v1
41- if : always()
42- with :
43- name : Tests Results
44- path : ' ./**/target/surefire-reports/TEST-TestSuite.xml'
45- reporter : java-junit
39+ # Temporarily disabled due to enterprise policy restriction
40+ # TODO: Re-enable once an approved alternative is found
41+ # - name: Test Report
42+ # uses: dorny/test-reporter@v1
43+ # if: always()
44+ # with:
45+ # name: Tests Results
46+ # path: './**/target/surefire-reports/TEST-TestSuite.xml'
47+ # reporter: java-junit
4648 - name : Upload unit test results
4749 if : failure()
4850 uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments