Merge remote-tracking branch 'upstream/development' into development

This commit is contained in:
marauder2k7 2023-08-01 06:41:48 +01:00
commit 325edf410d
9 changed files with 102 additions and 167 deletions

View file

@ -1,4 +1,4 @@
name: Report Test Results
name: Linux Test Results
on:
workflow_run:
workflows: ["Linux Build"]
@ -21,6 +21,14 @@ jobs:
runos: ubuntu-latest,
artifact-name: "torque3dLinuxGCCUnitTest"
}
<<<<<<<< HEAD:.github/workflows/test-results.yml
- {
name: "Mac Test Results",
runos: macos-latest,
artifact-name: "torque3dMacOSXCLANGUnitTest"
}
========
>>>>>>>> upstream/development:.github/workflows/test-results-linux.yml
steps:
- name: Download Linux Test Report
@ -38,3 +46,4 @@ jobs:
name: ${{matrix.config.name}}
path: "**/My Projects/Torque3D/game/test_detail.xml"
reporter: java-junit
output-to: 'checks'

View file

@ -1,4 +1,4 @@
name: Report Test Results
name: Mac Test Results
on:
workflow_run:
workflows: ["MacOSX Build"]
@ -38,3 +38,4 @@ jobs:
name: ${{matrix.config.name}}
path: "**/My Projects/Torque3D/game/test_detail.xml"
reporter: java-junit
output-to: 'checks'

View file

@ -1,4 +1,4 @@
name: Report Test Results
name: Windows Test Results
on:
workflow_run:
workflows: ["Windows Build"]
@ -38,3 +38,4 @@ jobs:
name: ${{matrix.config.name}}
path: "**/My Projects/Torque3D/game/test_detail.xml"
reporter: java-junit
output-to: 'checks'

View file

@ -1,42 +0,0 @@
name: Report Test Results
on:
workflow_run:
workflows: ["Windows Build", "Linux Build", "MacOSX Build"]
types:
- completed
permissions:
checks: write
jobs:
checks:
name: ${{matrix.config.name}}
runs-on: ${{matrix.config.runos}}
strategy:
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",
runos: macos-latest,
artifact-name: "torque3dMacOSXCLANGUnitTest"
}
steps:
- 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