summaryrefslogtreecommitdiffstats
path: root/src/ci/github-actions/problem_matchers.json
blob: b6c7ace841e59769cd7bca8f4c434cc63566b23a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
    "problemMatcher": [
        {
            "owner": "tidy-error-file-line",
            "pattern": [
                {
                    "regexp": "^tidy error: /checkout/(.+):(\\d+): (.+)$",
                    "file": 1,
                    "line": 2,
                    "message": 3
                }
            ]
        },
        {
            "owner": "cargo-common",
            "pattern": [
                {
                    "regexp": "^(warning|warn|error)(\\[(\\S*)\\])?: (.*)$",
                    "severity": 1,
                    "message": 4,
                    "code": 3
                },
                {
                    "regexp": "^\\s+-->\\s(\\S+):(\\d+):(\\d+)$",
                    "file": 1,
                    "line": 2,
                    "column": 3
                }
            ]
        },
        {
            "owner": "compiler-panic",
            "pattern": [
                {
                    "regexp": "error: internal compiler error: (.*):(\\d+):(\\d+): (.*)$",
                    "message": 4,
                    "file": 1,
                    "line": 2,
                    "column": 3
                }
            ]
        },
        {
            "owner": "cargo-fmt",
            "pattern": [
                {
                    "regexp": "^(Diff in (\\S+)) at line (\\d+):",
                    "message": 1,
                    "file": 2,
                    "line": 3
                }
            ]
        }
    ]
}