Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/summary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name: SPDK per-patch summary

on:
workflow_dispatch:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated change?
Summary requires a lot of inputs from previous stages, otherwise it's going to fail.

workflow_call:
inputs:
client_payload:
Expand All @@ -13,6 +14,10 @@ on:
type: string
default: 'failure'

permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout

jobs:
merge_outputs:
# 22.04 used on purpose; it has lcov+gcov versions that are compatible with what
Expand Down Expand Up @@ -60,6 +65,15 @@ jobs:
with:
name: _autorun_summary
path: _autorun_summary

- name: Upload Report to Codecov
uses: codecov/codecov-action@v5.1.2
with:
fail_ci_if_error: true
use_oidc: true
files: ./_autorun_summary/ut_coverage/ut_cov_unit.info,./_autorun_summary/ut_coverage/ut_cov_total.info
slug: spdk/spdk

outputs:
result: ${{ steps.autorun_post.outputs.result }}

Expand Down