-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Add test reporting (prep for 0.15 changes)
- Loading branch information
Showing
4 changed files
with
116 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Report Avian | ||
on: | ||
workflow_run: | ||
workflows: [Test Avian] | ||
types: [ completed ] | ||
|
||
permissions: | ||
checks: write | ||
|
||
jobs: | ||
checks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download Test Report | ||
uses: dawidd6/action-download-artifact@v2 | ||
with: | ||
name: junit-test-results | ||
workflow: ${{ github.event.workflow.id }} | ||
run_id: ${{ github.event.workflow_run.id }} | ||
- name: Publish Test Report | ||
uses: mikepenz/action-junit-report@v5 | ||
with: | ||
commit: ${{github.event.workflow_run.head_sha}} | ||
report_paths: 'junit.xml' | ||
include_passed: true | ||
job_summary: true | ||
detailed_summary: true | ||
group_suite: true | ||
check_name: Report Avian |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Report Benches | ||
on: | ||
workflow_run: | ||
workflows: [Test Benches] | ||
types: [ completed ] | ||
|
||
permissions: | ||
checks: write | ||
|
||
jobs: | ||
checks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download Test Report | ||
uses: dawidd6/action-download-artifact@v2 | ||
with: | ||
name: junit-test-results | ||
workflow: ${{ github.event.workflow.id }} | ||
run_id: ${{ github.event.workflow_run.id }} | ||
- name: Publish Test Report | ||
uses: mikepenz/action-junit-report@v5 | ||
with: | ||
commit: ${{github.event.workflow_run.head_sha}} | ||
report_paths: 'junit.xml' | ||
include_passed: true | ||
job_summary: true | ||
detailed_summary: true | ||
group_suite: true | ||
check_name: Report Benches |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Report Parry | ||
on: | ||
workflow_run: | ||
workflows: [Test Parry] | ||
types: [ completed ] | ||
|
||
permissions: | ||
checks: write | ||
|
||
jobs: | ||
checks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download Test Report | ||
uses: dawidd6/action-download-artifact@v2 | ||
with: | ||
name: junit-test-results | ||
workflow: ${{ github.event.workflow.id }} | ||
run_id: ${{ github.event.workflow_run.id }} | ||
- name: Publish Test Report | ||
uses: mikepenz/action-junit-report@v5 | ||
with: | ||
commit: ${{github.event.workflow_run.head_sha}} | ||
report_paths: 'junit.xml' | ||
include_passed: true | ||
job_summary: true | ||
detailed_summary: true | ||
group_suite: true | ||
check_name: Report Parry |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Report Rapier | ||
on: | ||
workflow_run: | ||
workflows: [Test Rapier] | ||
types: [ completed ] | ||
|
||
permissions: | ||
checks: write | ||
|
||
jobs: | ||
checks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download Test Report | ||
uses: dawidd6/action-download-artifact@v2 | ||
with: | ||
name: junit-test-results | ||
workflow: ${{ github.event.workflow.id }} | ||
run_id: ${{ github.event.workflow_run.id }} | ||
- name: Publish Test Report | ||
uses: mikepenz/action-junit-report@v5 | ||
with: | ||
commit: ${{github.event.workflow_run.head_sha}} | ||
report_paths: 'junit.xml' | ||
include_passed: true | ||
job_summary: true | ||
detailed_summary: true | ||
group_suite: true | ||
check_name: Report Rapier |