-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CI] update static checker script to downgrade clang-format version. #2878
[CI] update static checker script to downgrade clang-format version. #2878
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice Catch!
And i think we can remove cpp_checker in static_check to avoid confusion .github/workflows/cpp_linter.yml
seems to be working properly, except minor differences.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suffered from this SO LONG!
Great work!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
Thank you for your feedback! I have removed the clang-format checks from the static checkers and verifiers. Please take a look. |
@@ -23,6 +23,7 @@ jobs: | |||
file-annotations: false | |||
step-summary: true | |||
format-review: true | |||
tidy-checks: '-*' # disable clang-tidy checks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Disabling clang-tidy checks because the reports generated are just simple warnings and may provide incorrect results.
Thank you for quick apply!! LGTM again |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This pull request updates the workflow script to run on Ubuntu 22.04 instead of the latest version, allowing the static checker to use clang-format version 14. **Self-evaluation:** 1. Build test: [ ]Passed [ ]Failed [X]Skipped 2. Run test: [ ]Passed [ ]Failed [X]Skipped Signed-off-by: Donghyeon Jeong <[email protected]>
This commit aims to eliminate duplicate clang-format checks, which can lead to mismatches. Additionally, it updates the cpp-linter workflow script to run on Ubuntu 22.04 instead of the latest version. **Changes proposed in this PR:** - Remove the C++ checker from the static checker. - Update cpp-linter to operate on Ubuntu 22.04 and disable clang-tidy checks. **Self-evaluation:** 1. Build test: [ ]Passed [ ]Failed [X]Skipped 2. Run test: [ ]Passed [ ]Failed [X]Skipped Signed-off-by: Donghyeon Jeong <[email protected]>
883a283
to
bd98485
Compare
This pull request updates the workflow script to run on Ubuntu 22.04 instead of the latest version, allowing the static checker to use clang-format version 14.
Self-evaluation: