2023-03-21 22:11:02 +08:00
|
|
|
name: Publish BabbleSim Tests Results
|
2022-02-23 23:37:23 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_run:
|
2023-04-17 21:57:29 +08:00
|
|
|
workflows: ["BabbleSim Tests"]
|
2022-02-23 23:37:23 +08:00
|
|
|
types:
|
|
|
|
- completed
|
|
|
|
jobs:
|
2023-03-21 22:11:02 +08:00
|
|
|
bsim-test-results:
|
|
|
|
name: "Publish BabbleSim Test Results"
|
2023-03-18 18:11:12 +08:00
|
|
|
runs-on: ubuntu-22.04
|
2022-02-23 23:37:23 +08:00
|
|
|
if: github.event.workflow_run.conclusion != 'skipped'
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Download artifacts
|
|
|
|
uses: dawidd6/action-download-artifact@v2
|
|
|
|
with:
|
|
|
|
run_id: ${{ github.event.workflow_run.id }}
|
|
|
|
|
2023-03-21 22:11:02 +08:00
|
|
|
- name: Publish BabbleSim Test Results
|
2023-04-15 14:08:29 +08:00
|
|
|
uses: EnricoMi/publish-unit-test-result-action@v2
|
2022-02-23 23:37:23 +08:00
|
|
|
with:
|
2023-03-21 22:11:02 +08:00
|
|
|
check_name: BabbleSim Test Results
|
2022-02-23 23:37:23 +08:00
|
|
|
comment_mode: off
|
|
|
|
commit: ${{ github.event.workflow_run.head_sha }}
|
|
|
|
event_file: event/event.json
|
|
|
|
event_name: ${{ github.event.workflow_run.event }}
|
2023-03-21 22:11:02 +08:00
|
|
|
files: "bsim-test-results/**/bsim_results.xml"
|