-
Notifications
You must be signed in to change notification settings - Fork 1
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
allow version to be a path #95
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #95 +/- ##
==========================================
+ Coverage 95.92% 96.12% +0.20%
==========================================
Files 7 7
Lines 270 284 +14
==========================================
+ Hits 259 273 +14
Misses 11 11 ☔ View full report in Codecov by Sentry. |
The MacOS runners are having the same trouble stated in cpp-linter/cpp-linter-action#237 |
avoids re-parsing the specified version multiple times
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 just finished my trip, sorry for the late reply.
Oh, not a problem. I didn't know you were on vacation. There's no real rush anyway. Not many users are using a path as the specified version. |
usage: clang-tools [-h] [-i VERSION] [-t TOOL [TOOL ...]] [-d DIR] [-f] [-b] [-u VERSION]
options:
-h, --help show this help message and exit
-i VERSION, --install VERSION
Install clang-tools about a specific version.
-t TOOL [TOOL ...], --tool TOOL [TOOL ...]
Specify which tool(s) to install.
-d DIR, --directory DIR
The directory where the clang-tools are installed.
-f, --overwrite Force overwriting the symlink to the installed binary. This will only overwrite an existing symlink.
-b, --no-progress-bar
Do not display a progress bar for downloads.
-u VERSION, --uninstall VERSION
Uninstall clang-tools with specific version. This is done before any install. Maybe we should update the following part of
|
Sure. Although, this is behavior/PR is specific to cpp-linter-action. |
apply sonarcloud suggestions
54eb3d4
to
a23a644
Compare
e5f25a5
to
9a430ec
Compare
I fixed the regression by storing the parsed version tuple as a class ( |
also update docs' copyright year
This is essentially blocked by an issue with the built static binaries. Any objection to merging/releasing this to get it upstream? |
I have no objection to merge and release. I just have a question about help. With the help of
|
3d3b7bf
to
9eea4eb
Compare
|
resolves #94