Summary
The warning_line module doc claims its Clang/GCC and MSVC warning
lines are recognized by "GitHub Actions ::warning::" annotators "out
of the box", but neither writer emits the ::warning:: workflow-command
syntax, and GitHub Actions does not auto-recognize Clang/MSVC lines
without a registered problem matcher.
Location
src/output/warning_line.rs:5-11 (module doc)
Evidence
//! Editor- and CI-annotator-friendly inline warnings: one offender per
//! line, in the conventional Clang/GCC and MSVC formats that quickfix
//! parsers (VS Code, IntelliJ, Vim) and CI annotators (GitHub Actions
//! `::warning::`, GitLab, Jenkins warnings-ng) recognize out of the
//! box.
Two inaccuracies:
-
Wrong syntax token. ::warning:: (more precisely
::warning file=...,line=...::message) is GitHub Actions'
workflow-command syntax. These writers emit Clang
(path:line:col: warning: msg [rule]) and MSVC
(path(line,col): warning : msg) lines — a completely different
format. The native ::warning file=...:: annotations are produced
elsewhere (the CLI annotation path in
big-code-analysis-cli/src/check_format.rs, which percent-encodes
file= properties), not here.
-
"out of the box" overstates recognition. GitHub Actions does not
parse Clang/GCC or MSVC diagnostic lines automatically; it requires a
registered problem matcher. The sibling doc in the CLI gets this
right:
//! - [`AggregatedFormat::ClangWarning`] — clang/GCC warning lines
//! (editor quickfix parsers, GitHub Actions problem matchers).
(big-code-analysis-cli/src/check_format.rs:17-18)
Expected Behavior
The module doc should either drop the ::warning:: reference (since
these writers do not emit that format) or rephrase to "GitHub Actions
problem matchers" to match the CLI doc, and avoid implying the lines are
auto-recognized without a matcher.
Actual Behavior
The doc conflates the Clang/MSVC line formats with GitHub Actions'
native ::warning:: workflow-command syntax and claims out-of-the-box
recognition that requires a problem matcher.
Impact
Reader-facing API documentation (this is a published-crate module whose
writers are re-exported from lib.rs). A user wiring write_clang_warning
into a GitHub Actions workflow expecting annotations to "just appear"
will see plain log text and no annotations until they register a problem
matcher. No runtime behavior is affected.
Resolution
Fixed in 7a41184: warning_line.rs module doc no longer claims GH Actions ::warning:: or "out of the box" CI recognition; problem matcher requirement documented.
Summary
The
warning_linemodule doc claims its Clang/GCC and MSVC warninglines are recognized by "GitHub Actions
::warning::" annotators "outof the box", but neither writer emits the
::warning::workflow-commandsyntax, and GitHub Actions does not auto-recognize Clang/MSVC lines
without a registered problem matcher.
Location
src/output/warning_line.rs:5-11(module doc)Evidence
Two inaccuracies:
Wrong syntax token.
::warning::(more precisely::warning file=...,line=...::message) is GitHub Actions'workflow-command syntax. These writers emit Clang
(
path:line:col: warning: msg [rule]) and MSVC(
path(line,col): warning : msg) lines — a completely differentformat. The native
::warning file=...::annotations are producedelsewhere (the CLI annotation path in
big-code-analysis-cli/src/check_format.rs, which percent-encodesfile=properties), not here."out of the box" overstates recognition. GitHub Actions does not
parse Clang/GCC or MSVC diagnostic lines automatically; it requires a
registered problem matcher. The sibling doc in the CLI gets this
right:
(
big-code-analysis-cli/src/check_format.rs:17-18)Expected Behavior
The module doc should either drop the
::warning::reference (sincethese writers do not emit that format) or rephrase to "GitHub Actions
problem matchers" to match the CLI doc, and avoid implying the lines are
auto-recognized without a matcher.
Actual Behavior
The doc conflates the Clang/MSVC line formats with GitHub Actions'
native
::warning::workflow-command syntax and claims out-of-the-boxrecognition that requires a problem matcher.
Impact
Reader-facing API documentation (this is a published-crate module whose
writers are re-exported from
lib.rs). A user wiringwrite_clang_warninginto a GitHub Actions workflow expecting annotations to "just appear"
will see plain log text and no annotations until they register a problem
matcher. No runtime behavior is affected.
Resolution
Fixed in 7a41184: warning_line.rs module doc no longer claims GH Actions
::warning::or "out of the box" CI recognition; problem matcher requirement documented.