We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35636f9 commit ef807cbCopy full SHA for ef807cb
src/ci/github-actions/problem_matchers.json
@@ -0,0 +1,15 @@
1
+{
2
+ "problemMatcher": [
3
+ {
4
+ "owner": "tidy-error-file-line",
5
+ "pattern": [
6
7
+ "regexp": "^tidy error: /checkout/(.+):(\\d+): (.+)$",
8
+ "file": 1,
9
+ "line": 2,
10
+ "message": 3
11
+ }
12
+ ]
13
14
15
+}
src/ci/scripts/run-build-from-ci.sh
@@ -10,6 +10,8 @@ source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
export CI="true"
export SRC=.
+echo "::add-matcher::src/ci/github-actions/problem_matchers.json"
+
# Remove any preexisting rustup installation since it can interfere
16
# with the cargotest step and its auto-detection of things like Clippy in
17
# the environment
0 commit comments