mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 16:14:38 +00:00
add test reporter
test macos build with gcc problem catcher, apparently it works with clang
This commit is contained in:
parent
9eeb74c998
commit
04d29e04de
3 changed files with 29 additions and 2 deletions
10
.github/workflows/build-linux-gcc.yml
vendored
10
.github/workflows/build-linux-gcc.yml
vendored
|
|
@ -84,4 +84,12 @@ jobs:
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: ./.github/actions/upload-artifact
|
uses: ./.github/actions/upload-artifact
|
||||||
with:
|
with:
|
||||||
name: torque3dLinuxGCCUnitTest
|
name: torque3dLinuxGCCUnitTest
|
||||||
|
|
||||||
|
- name: Test Reporter
|
||||||
|
uses: dorny/test-reporter@v1.6.0
|
||||||
|
if: success() || failure() # run this step even if previous step failed
|
||||||
|
with:
|
||||||
|
name: JEST Tests
|
||||||
|
path: test_detail.xml
|
||||||
|
reporter: jest-junit
|
||||||
13
.github/workflows/build-macos-clang.yml
vendored
13
.github/workflows/build-macos-clang.yml
vendored
|
|
@ -35,6 +35,9 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
echo github.event.action: ${{ github.event.action }}
|
echo github.event.action: ${{ github.event.action }}
|
||||||
echo github.event_name: ${{ github.event_name }}
|
echo github.event_name: ${{ github.event_name }}
|
||||||
|
|
||||||
|
- name: Setup GCC problem matcher
|
||||||
|
uses: ammaraskar/gcc-problem-matcher@master
|
||||||
|
|
||||||
- name: Install MacOSX Dependencies
|
- name: Install MacOSX Dependencies
|
||||||
run: |
|
run: |
|
||||||
|
|
@ -62,4 +65,12 @@ jobs:
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: ./.github/actions/upload-artifact
|
uses: ./.github/actions/upload-artifact
|
||||||
with:
|
with:
|
||||||
name: torque3dMacOSXCLANGUnitTest
|
name: torque3dMacOSXCLANGUnitTest
|
||||||
|
|
||||||
|
- name: Test Reporter
|
||||||
|
uses: dorny/test-reporter@v1.6.0
|
||||||
|
if: success() || failure() # run this step even if previous step failed
|
||||||
|
with:
|
||||||
|
name: JEST Tests
|
||||||
|
path: test_detail.xml
|
||||||
|
reporter: jest-junit
|
||||||
8
.github/workflows/build-windows-msvc.yml
vendored
8
.github/workflows/build-windows-msvc.yml
vendored
|
|
@ -62,3 +62,11 @@ jobs:
|
||||||
uses: ./.github/actions/upload-artifact
|
uses: ./.github/actions/upload-artifact
|
||||||
with:
|
with:
|
||||||
name: torque3dWindowsMSVCUnitTest
|
name: torque3dWindowsMSVCUnitTest
|
||||||
|
|
||||||
|
- name: Test Reporter
|
||||||
|
uses: dorny/test-reporter@v1.6.0
|
||||||
|
if: success() || failure() # run this step even if previous step failed
|
||||||
|
with:
|
||||||
|
name: JEST Tests
|
||||||
|
path: test_detail.xml
|
||||||
|
reporter: jest-junit
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue