Add GCC-based problem matcher to VS Code config
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
67768eba7f
commit
9443d02de0
|
@ -1,24 +1,54 @@
|
||||||
{
|
{
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
|
|
||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"label": "Build",
|
"label": "Build",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "zig build",
|
"command": "zig build",
|
||||||
"group": {
|
|
||||||
"kind": "build",
|
"group": {
|
||||||
"isDefault": true
|
"kind": "build",
|
||||||
}
|
"isDefault": true
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"label": "Test",
|
"presentation": {
|
||||||
"type": "shell",
|
"echo": true,
|
||||||
"command": "zig build test",
|
"reveal": "always",
|
||||||
"group": {
|
"focus": true,
|
||||||
"kind": "test",
|
"panel": "shared",
|
||||||
"isDefault": true
|
"showReuseMessage": true,
|
||||||
}
|
"clear": true,
|
||||||
}
|
"revealProblems": "onProblem",
|
||||||
]
|
},
|
||||||
|
|
||||||
|
"problemMatcher": {
|
||||||
|
"source": "gcc",
|
||||||
|
"owner": "cpptools",
|
||||||
|
|
||||||
|
"fileLocation": [
|
||||||
|
"autoDetect",
|
||||||
|
"${cwd}",
|
||||||
|
],
|
||||||
|
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 5,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Test",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "zig build test",
|
||||||
|
"group": {
|
||||||
|
"kind": "test",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue