|
@@ -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/[email protected]
|
|
|
|
+ if: success() || failure() # run this step even if previous step failed
|
|
|
|
+ with:
|
|
|
|
+ name: JEST Tests
|
|
|
|
+ path: test_detail.xml
|
|
|
|
+ reporter: jest-junit
|