Added the workaround for GitHub test report v1 to work with action v4.

Testing the workaround for GitHub test report v1 to work with action v4 and if not working, will have to change the GitHub action version to v3 while leaving GitHub artifact version as v4 as required.
This commit is contained in:
Hong Chen 2025-01-15 13:50:39 -06:00
parent 544b9624eb
commit 02267fb391
4 changed files with 44 additions and 8 deletions

View File

@ -26,9 +26,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: dorny/test-reporter@v1
- name: Checkout the repository
uses: actions/checkout@v4
- name: Download the artifact
uses: actions/download-artifact@v4
with:
name: Trick_${{matrix.cfg.os}}${{matrix.cfg.tag}}_py${{matrix.python}}
path: . # download the artifact in the current directory
- name: Report the test results
uses: dorny/test-reporter@v1
with:
artifact: Trick_${{matrix.cfg.os}}${{matrix.cfg.tag}}_py${{matrix.python}} # artifact name
name: Results_Trick_${{matrix.cfg.os}}${{matrix.cfg.tag}}_py${{matrix.python}} # Name of the check run which will be created
path: '*.xml' # Path to test results (inside artifact .zip)
reporter: java-junit # Format of test results

View File

@ -20,9 +20,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: dorny/test-reporter@v1
- name: Checkout the repository
uses: actions/checkout@v4
- name: Download the artifact
uses: actions/download-artifact@v4
with:
name: Trick_${{matrix.cfg.os}}${{matrix.cfg.tag}}_py${{matrix.python}}
path: . # download the artifact in the current directory
- name: Report the test results
uses: dorny/test-reporter@v1
with:
artifact: Trick_${{matrix.cfg.os}}${{matrix.cfg.tag}}_py${{matrix.python}} # artifact name
name: Results_Trick_${{matrix.cfg.os}}${{matrix.cfg.tag}}_py${{matrix.python}} # Name of the check run which will be created
path: '*.xml' # Path to test results (inside artifact .zip)
reporter: java-junit # Format of test results

View File

@ -20,9 +20,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: dorny/test-reporter@v1
- name: Checkout the repository
uses: actions/checkout@v4
- name: Download the artifact
uses: actions/download-artifact@v4
with:
name: Trick_${{matrix.cfg.os}}${{matrix.cfg.tag}}_py${{matrix.python}}
path: . # download the artifact in the current directory
- name: Report the test results
uses: dorny/test-reporter@v1
with:
artifact: Trick_${{matrix.cfg.os}}${{matrix.cfg.tag}}_py${{matrix.python}} # artifact name
name: Results_Trick_${{matrix.cfg.os}}${{matrix.cfg.tag}}_py${{matrix.python}} # Name of the check run which will be created
path: '*.xml' # Path to test results (inside artifact .zip)
reporter: java-junit # Format of test results

View File

@ -12,9 +12,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: dorny/test-reporter@v1
- name: Checkout the repository
uses: actions/checkout@v4
- name: Download the artifact
uses: actions/download-artifact@v4
with:
name: Trick_macos
path: . # download the artifact in the current directory
- name: Report the test results
uses: dorny/test-reporter@v1
with:
artifact: Trick_macos # artifact name
name: Results_Trick_macos # Name of the check run which will be created
path: '*.xml' # Path to test results (inside artifact .zip)
reporter: java-junit # Format of test results