as the matcher actually applies to all warnings from clang frontend, and hence can be reused when building the tree with clang, so let's rename it before using it in the clang build workflows. Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>
19 lines
455 B
JSON
19 lines
455 B
JSON
{
|
|
"problemMatcher": [
|
|
{
|
|
"owner": "clang",
|
|
"pattern": [
|
|
{
|
|
"regexp": "^([^:]+):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*?)\\s+\\[(.*?)\\]$",
|
|
"file": 1,
|
|
"line": 2,
|
|
"column": 3,
|
|
"severity": 4,
|
|
"message": 5,
|
|
"code": 6
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|