|
@@ -11,14 +11,34 @@ jobs:
|
|
checks:
|
|
checks:
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
steps:
|
|
- - name: Download Test Report
|
|
|
|
|
|
+ # See https://docs.github.com/en/actions/learn-github-actions/variables#default-environment-variables
|
|
|
|
+ # for a list of possible values
|
|
|
|
+ - name: Download Windows Test Report
|
|
uses: dawidd6/action-download-artifact@v2
|
|
uses: dawidd6/action-download-artifact@v2
|
|
with:
|
|
with:
|
|
- name: junit-test-results
|
|
|
|
|
|
+ path: Windows
|
|
|
|
+ name: junit-test-results-Windows
|
|
workflow: ${{ github.event.workflow.id }}
|
|
workflow: ${{ github.event.workflow.id }}
|
|
run_id: ${{ github.event.workflow_run.id }}
|
|
run_id: ${{ github.event.workflow_run.id }}
|
|
|
|
+
|
|
|
|
+ - name: Download Linux Test Report
|
|
|
|
+ uses: dawidd6/action-download-artifact@v2
|
|
|
|
+ with:
|
|
|
|
+ path: Linux
|
|
|
|
+ name: junit-test-results-Linux
|
|
|
|
+ workflow: ${{ github.event.workflow.id }}
|
|
|
|
+ run_id: ${{ github.event.workflow_run.id }}
|
|
|
|
+
|
|
|
|
+ - name: Download Mac Test Report
|
|
|
|
+ uses: dawidd6/action-download-artifact@v2
|
|
|
|
+ with:
|
|
|
|
+ path: macOS
|
|
|
|
+ name: junit-test-results-macOS
|
|
|
|
+ workflow: ${{ github.event.workflow.id }}
|
|
|
|
+ run_id: ${{ github.event.workflow_run.id }}
|
|
|
|
+
|
|
- name: Publish Test Report
|
|
- name: Publish Test Report
|
|
uses: mikepenz/action-junit-report@v3
|
|
uses: mikepenz/action-junit-report@v3
|
|
with:
|
|
with:
|
|
commit: ${{github.event.workflow_run.head_sha}}
|
|
commit: ${{github.event.workflow_run.head_sha}}
|
|
- report_paths: '${{github.workspace}}/My Projects/Torque3D/game/test_detail.xml'
|
|
|
|
|
|
+ report_paths: '**/My Projects/Torque3D/game/test_detail.xml'
|