Skip to content

Commit

Permalink
CI: Add test reporting (prep for 0.15 changes)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptsd committed Nov 25, 2024
1 parent 0eb0edb commit a4481e9
Show file tree
Hide file tree
Showing 4 changed files with 116 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/report_avian.yml
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
29 changes: 29 additions & 0 deletions .github/workflows/report_benches.yml
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
29 changes: 29 additions & 0 deletions .github/workflows/report_parry.yml
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
29 changes: 29 additions & 0 deletions .github/workflows/report_rapier.yml
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

0 comments on commit a4481e9

Please sign in to comment.