Skip to content

Commit

Permalink
github-ci: Update publish test results workflow to work with artifact…
Browse files Browse the repository at this point in the history
…s v4
  • Loading branch information
neilcook committed Feb 6, 2025
1 parent b49dd00 commit fb76248
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/pubtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,18 @@ jobs:
run_id: ${{ github.event.workflow_run.id }}
path: artifacts

- name: Publish Test Results
- name: Publish Test Results-gcc
uses: EnricoMi/publish-unit-test-result-action@v2
with:
commit: ${{ github.event.workflow_run.head_sha }}
event_file: artifacts/Event File/event.json
event_file: artifacts/Event-File-gcc/event.json
event_name: ${{ github.event.workflow_run.event }}
files: "artifacts/**/**/*.xml"

- name: Publish Test Results-clang
uses: EnricoMi/publish-unit-test-result-action@v2
with:
commit: ${{ github.event.workflow_run.head_sha }}
event_file: artifacts/Event-File-clang/event.json
event_name: ${{ github.event.workflow_run.event }}
files: "artifacts/**/**/*.xml"

0 comments on commit fb76248

Please sign in to comment.