mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 08:04:40 +00:00
Fix pipelin
This commit is contained in:
parent
1ce2dd07b0
commit
de4d5fa5d7
1 changed files with 6 additions and 2 deletions
8
.github/workflows/cmake.yml
vendored
8
.github/workflows/cmake.yml
vendored
|
|
@ -59,10 +59,14 @@ jobs:
|
||||||
- name: Test
|
- name: Test
|
||||||
run: |
|
run: |
|
||||||
cd "${{github.workspace}}/My Projects/Torque3D/game"
|
cd "${{github.workspace}}/My Projects/Torque3D/game"
|
||||||
./Torque3D runTests.tscript
|
if [ "$RUNNER_OS" == "macOS" ]; then
|
||||||
|
./Torque3D.app/Contents/MacOS/Torque3D runTests.tscript
|
||||||
|
else
|
||||||
|
./Torque3D runTests.tscript
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Publish Test Report
|
- name: Publish Test Report
|
||||||
uses: mikepenz/action-junit-report@v3
|
uses: mikepenz/action-junit-report@v3
|
||||||
if: success() || failure() # always run even if the previous step fails
|
if: success() || failure() # always run even if the previous step fails
|
||||||
with:
|
with:
|
||||||
report_paths: '${{github.workspace}}/My Projects/Torque3D/game/TEST-*.xml'
|
report_paths: '${{github.workspace}}/My Projects/Torque3D/game/test_detail.xml'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue