Skip to content

Commit b95cfdb

Browse files
committed
Disable dorny/test-reporter due to enterprise policy restriction
The GitHub Actions workflow fails to start due to enterprise policy restriction on third-party actions. Temporarily disable the test-reporter step until an approved alternative is found.
1 parent 5f8bcf8 commit b95cfdb

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

.github/workflows/Helix-CI.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/Helix-Manual-CI.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)