File tree 3 files changed +18
-3
lines changed
docker/host-x86_64/x86_64-gnu-llvm-14
3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,4 @@ ENV SCRIPT ../x.py --stage 2 test --exclude src/tools/tidy && \
62
62
# work.
63
63
#
64
64
../x.ps1 --stage 2 test tests/ui --pass=check \
65
- --host='' --target=i686-unknown-linux-gnu && \
66
- # Run tidy at the very end, after all the other tests.
67
- python2.7 ../x.py --stage 2 test src/tools/tidy
65
+ --host='' --target=i686-unknown-linux-gnu
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
10
10
export CI=" true"
11
11
export SRC=.
12
12
13
+ echo " ::add-matcher::src/ci/github-actions/problem_matchers.json"
14
+
13
15
# Remove any preexisting rustup installation since it can interfere
14
16
# with the cargotest step and its auto-detection of things like Clippy in
15
17
# the environment
You can’t perform that action at this time.
0 commit comments