|
@@ -1,7 +1,7 @@
|
|
|
-name: Report Test Results
|
|
|
+name: Linux Test Results
|
|
|
on:
|
|
|
workflow_run:
|
|
|
- workflows: ["Windows Build", "Linux Build", "MacOSX Build"]
|
|
|
+ workflows: ["Linux Build"]
|
|
|
types:
|
|
|
- completed
|
|
|
|
|
@@ -16,25 +16,25 @@ jobs:
|
|
|
fail-fast: false
|
|
|
matrix:
|
|
|
config:
|
|
|
- - {
|
|
|
- name: "Windows Test Results",
|
|
|
- runos: windows-latest,
|
|
|
- artifact-name: "torque3dLinuxGCCUnitTest"
|
|
|
- }
|
|
|
- {
|
|
|
name: "Linux Test Results",
|
|
|
+ runos: ubuntu-latest,
|
|
|
artifact-name: "torque3dLinuxGCCUnitTest"
|
|
|
}
|
|
|
- - {
|
|
|
- name: "Mac Test Results",
|
|
|
- artifact-name: "torque3dMacOSXCLANGUnitTest"
|
|
|
- }
|
|
|
|
|
|
steps:
|
|
|
+ - name: Download Linux Test Report
|
|
|
+ uses: dawidd6/action-download-artifact@v2
|
|
|
+ with:
|
|
|
+ path: Linux
|
|
|
+ name: ${{matrix.config.artifact-name}}
|
|
|
+ workflow: ${{ github.event.workflow.id }}
|
|
|
+ run_id: ${{ github.event.workflow_run.id }}
|
|
|
+
|
|
|
- name: Test Reporter
|
|
|
uses: phoenix-actions/test-reporting@v12
|
|
|
with:
|
|
|
artifact: ${{matrix.config.artifact-name}}
|
|
|
name: ${{matrix.config.name}}
|
|
|
path: "**/My Projects/Torque3D/game/test_detail.xml"
|
|
|
- reporter: java-junit
|
|
|
+ reporter: java-junit
|