mirror of https://github.com/python/cpython.git
Remove Sphinx problem matcher to avoid annotating unchanged files (#108005)
This commit is contained in:
parent
c2941cba7a
commit
0d7f5d3ba3
|
@ -1,40 +0,0 @@
|
||||||
{
|
|
||||||
"problemMatcher": [
|
|
||||||
{
|
|
||||||
"owner": "sphinx-problem-matcher",
|
|
||||||
"pattern": [
|
|
||||||
{
|
|
||||||
"regexp": "^(.*):(\\d+):\\s+(\\w*):\\s+(.*)$",
|
|
||||||
"file": 1,
|
|
||||||
"line": 2,
|
|
||||||
"severity": 3,
|
|
||||||
"message": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"owner": "sphinx-problem-matcher-loose",
|
|
||||||
"pattern": [
|
|
||||||
{
|
|
||||||
"_comment": "A bit of a looser pattern, doesn't look for line numbers, just looks for file names relying on them to start with / and end with .rst",
|
|
||||||
"regexp": "(\/.*\\.rst):\\s+(\\w*):\\s+(.*)$",
|
|
||||||
"file": 1,
|
|
||||||
"severity": 2,
|
|
||||||
"message": 3
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"owner": "sphinx-problem-matcher-loose-no-severity",
|
|
||||||
"pattern": [
|
|
||||||
{
|
|
||||||
"_comment": "Looks for file names ending with .rst and line numbers but without severity",
|
|
||||||
"regexp": "^(.*\\.rst):(\\d+):(.*)$",
|
|
||||||
"file": 1,
|
|
||||||
"line": 2,
|
|
||||||
"message": 3
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -18,8 +18,6 @@ jobs:
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Register Sphinx problem matcher
|
|
||||||
run: echo "::add-matcher::.github/problem-matchers/sphinx.json"
|
|
||||||
- name: 'Set up Python'
|
- name: 'Set up Python'
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
|
@ -76,8 +74,6 @@ jobs:
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Register Sphinx problem matcher
|
|
||||||
run: echo "::add-matcher::.github/problem-matchers/sphinx.json"
|
|
||||||
- uses: actions/cache@v3
|
- uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/pip
|
path: ~/.cache/pip
|
||||||
|
|
Loading…
Reference in New Issue