This is an automated email from the ASF dual-hosted git repository.

yhu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 2a764dd2a05 Change upload test report step (#29036)
2a764dd2a05 is described below

commit 2a764dd2a05ca05196d4cf558ec41dda939d12c8
Author: Vitaly Terentyev <[email protected]>
AuthorDate: Tue Oct 17 18:44:58 2023 +0400

    Change upload test report step (#29036)
---
 .github/workflows/beam_PreCommit_Java_PVR_Flink_Batch.yml | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/beam_PreCommit_Java_PVR_Flink_Batch.yml 
b/.github/workflows/beam_PreCommit_Java_PVR_Flink_Batch.yml
index a029e071ca8..283e0c959d0 100644
--- a/.github/workflows/beam_PreCommit_Java_PVR_Flink_Batch.yml
+++ b/.github/workflows/beam_PreCommit_Java_PVR_Flink_Batch.yml
@@ -99,10 +99,9 @@ jobs:
         with:
           name: JUnit Test Results
           path: "**/build/reports/tests/"
-      - name: Publish JUnit Test Results
-        uses: EnricoMi/publish-unit-test-result-action@v2
-        if: always()
+      - name: Upload test report
+        uses: actions/upload-artifact@v3
         with:
-          commit: '${{ env.prsha || env.GITHUB_SHA }}'
-          comment_mode: ${{ github.event_name == 'issue_comment'  && 'always' 
|| 'off' }}
-          files: '**/build/test-results/**/*.xml'
\ No newline at end of file
+          name: java-code-coverage-report
+          path: "**/build/test-results/**/*.xml"
+# TODO: Investigate 'Max retries exceeded' issue with 
EnricoMi/publish-unit-test-result-action@v2.
\ No newline at end of file

Reply via email to