-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Chore](build) upgrade clang-format version to 16 && move thrift to f…
…e-common (#19155) upgrade clang-format version to 16 move thrift to fe-common fix core dump on pipeline engine when operator canceled and not prepared
- Loading branch information
1 parent
ffe27ba
commit ec517a5
Showing
54 changed files
with
115 additions
and
123 deletions.
There are no files selected for viewing
Submodule action-sh-checker
updated
5 files
+2 −1 | .github/workflows/ci.yml | |
+7 −2 | Dockerfile | |
+3 −1 | README.md | |
+3 −0 | action.yml | |
+23 −2 | entrypoint.sh |
Submodule ccache-action
updated
8 files
+13 −0 | .github/workflows/tests.yml | |
+4 −1 | action.yml | |
+4,835 −4,629 | dist/restore/index.js | |
+4,834 −4,626 | dist/save/index.js | |
+177 −196 | package-lock.json | |
+4 −4 | package.json | |
+10 −6 | src/restore.ts | |
+6 −1 | src/save.ts |
Submodule clang-tidy-review
updated
22 files
+0 −1 | .dockerignore | |
+1 −1 | .github/workflows/black.yml | |
+26 −0 | .github/workflows/test.yml | |
+159 −1 | .gitignore | |
+8 −13 | Dockerfile | |
+87 −44 | README.md | |
+8 −2 | action.yml | |
+0 −3 | entrypoint.sh | |
+3 −8 | post/Dockerfile | |
+0 −0 | post/__init__.py | |
+9 −0 | post/action.yml | |
+258 −28 | post/clang_tidy_review/clang_tidy_review/__init__.py | |
+47 −27 | post/clang_tidy_review/clang_tidy_review/post.py | |
+48 −95 | post/clang_tidy_review/clang_tidy_review/review.py | |
+42 −0 | post/clang_tidy_review/pyproject.toml | |
+0 −4 | post/requirements.txt | |
+0 −4 | requirements.txt | |
+24 −0 | tests/src/hello.cxx | |
+12 −0 | tests/src/hello_original.cxx | |
+108 −0 | tests/src/test_clang_tidy_review.yaml | |
+424 −0 | tests/test_review.py | |
+16 −0 | upload/action.yml |
Submodule get-workflow-origin
updated
4 files
+1 −1 | .github/workflows/test.yml | |
+2,197 −65 | dist/index.js | |
+13,700 −65 | package-lock.json | |
+1 −1 | package.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,7 +102,6 @@ fi | |
|
||
if [[ "${HELP}" -eq 1 ]]; then | ||
usage | ||
exit | ||
fi | ||
|
||
echo "Get params: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.