mirror of https://github.com/BOINC/boinc.git
Add Junit test reporter for android.
This commit is contained in:
parent
fdf0507dee
commit
6beab5ec81
|
@ -98,6 +98,13 @@ jobs:
|
|||
name: android_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
|
||||
path: deploy/android_${{ matrix.type }}/*.7z
|
||||
|
||||
- name: Upload JUnit Tests Results
|
||||
uses: actions/upload-artifact@v2
|
||||
if: matrix.type == 'manager' # run this step even if previous step failed
|
||||
with:
|
||||
name: Android_tests_results
|
||||
path: android/BOINC/app/build/test-results/testDebugUnitTest/TEST-*.xml
|
||||
|
||||
- name: Upload coverage report
|
||||
uses: codecov/codecov-action@v1
|
||||
if: ${{ success() && matrix.type == 'manager' }}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: 'Test Report'
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: [Linux, Android] # runs after These workflow
|
||||
workflows: [Linux, Android] # runs after these workflow
|
||||
types:
|
||||
- completed
|
||||
|
||||
|
|
Loading…
Reference in New Issue