Skip to content

Commit 14c562c

Browse files
Ceres6aduh95
authored andcommittedFeb 3, 2025
tools: remove github reporter
PR-URL: #56468 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
1 parent 5afffb4 commit 14c562c

File tree

7 files changed

+2
-20318
lines changed

7 files changed

+2
-20318
lines changed
 

‎.github/workflows/tools.yml

-9
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ on:
2222
- cjs-module-lexer
2323
- corepack
2424
- doc
25-
- github_reporter
2625
- googletest
2726
- gyp-next
2827
- histogram
@@ -135,14 +134,6 @@ jobs:
135134
npm install --ignore-scripts $NEW_VERSION
136135
npm install --ignore-scripts
137136
fi
138-
- id: github_reporter
139-
subsystem: tools
140-
label: tools
141-
run: |
142-
./tools/dep_updaters/update-github-reporter.sh > temp-output
143-
cat temp-output
144-
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
145-
rm temp-output
146137
- id: googletest
147138
subsystem: deps
148139
label: dependencies, test

‎eslint.config.mjs

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ export default [
4949
'test/.tmp.*/**',
5050
'test/addons/??_*',
5151
'test/fixtures/**',
52-
'tools/github_reporter/**',
5352
],
5453
},
5554
// #endregion

‎pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ exclude = [
44
"tools/cpplint.py",
55
"tools/gyp",
66
"tools/inspector_protocol",
7-
"tools/eslint/node_modules",
8-
"tools/github_reporter"
7+
"tools/eslint/node_modules"
98
]
109
line-length = 172
1110
target-version = "py38"

‎tools/dep_updaters/update-github-reporter.sh

-44
This file was deleted.

‎tools/github_reporter/index.js

-20,230
This file was deleted.

‎tools/github_reporter/package.json

-31
This file was deleted.

‎tools/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ def HasRun(self, output):
317317
class ActionsAnnotationProgressIndicator(DotsProgressIndicator):
318318
def AboutToRun(self, case):
319319
case.additional_flags = case.additional_flags.copy() if hasattr(case, 'additional_flags') else []
320-
case.additional_flags.append('--test-reporter=./tools/github_reporter/index.js')
320+
case.additional_flags.append('--test-reporter=./test/common/test-error-reporter.js')
321321
case.additional_flags.append('--test-reporter-destination=stdout')
322322

323323
def GetAnnotationInfo(self, test, output):

0 commit comments

Comments
 (0)
Please sign in to comment.