-
Notifications
You must be signed in to change notification settings - Fork 129
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 output of clang-tidy fixes file #796
Comments
Have a look at this example. Here, the applied changes are provided as a build artifact in GHA. |
That link doesn't work for me for some reason, but I was able to see the same thing on the main branch. Is that uploading a file called |
No, the provided file is directly a git patch file. |
Okay, well then my feature request still stands 😄 It would be nice to have the actual content of the fixes file for tools that accept it, for instance this Action that can annotate clang-tidy fixes directly onto PR diffs. |
I see. |
It should be possible to to do that with the current set of features.
We could think of always exporting the file, if the default location is reasonable. |
@EzraBrooks: Do you know if multiple fixes files can be merged (or at least appended). And we might have a problem with the different paths (inside workspace and repository).. |
I already tried adding a new -export-files argument via that environment variable. Unfortunately it can only be passed once, so the fact that industrial_ci's internals already pass it means adding it to that variable crashes the tests. |
Unsure about merging them. I was able to produce reasonable output in my project's workspace using |
I will have a look. Being able to provide feedback in github would be great! |
I'd like to be able to keep the clang-tidy fixes file generated during an industrial_ci run, so I can load it into other tools that generate reports - or just export it and use it to run fixes.
The text was updated successfully, but these errors were encountered: