polserver/.github/problem-matchers/gcc.json
turleypol 16476c086b
CI build fix (#351)
* use new way to set environment variables in github actions, they disabled the old way. splitted macos build

* updated vsdev action

* list env vars

* test powershell syntax

* maybe fixed no pch

* use powershell syntax for macos

* removed reusepch fixed coverity

* testing problem matchers

* try to cheat with the regex for the filepath

* dedicated discord job name
2020-11-30 09:13:54 +01:00

17 lines
317 B
JSON

{
"problemMatcher": [
{
"owner": "gcc",
"pattern": [
{
"regexp": "^../(.*):(\\d+):(\\d+):\\s*(?:(?:fatal)?\\s(warning|error)):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
]
}
]
}