-
Notifications
You must be signed in to change notification settings - Fork 1
Description
For each project, we use a Makefile to manage our (VUnit) simulation and the Vivado project (create/open, build, export, etc.), among other things.
We already have in place some functionality to achieve some of the functionality provided by the OutputFilter. For example, we use pipe commands to pass the output of our console to the sed command, which then colorizes warnings, critical warnings, errors and failures. This is quite useful to identify dangerous warnings in our local console or CI/CD console.
We also use pipe commands to write the console output into log files, including filtered log files that contain only warnings using the tee command.
I see the OutputFilter as something that provides some other extra features and probably more flexibility for expansion.
Do you think I could use this approach to pipe the output of our Makefile commands into the OutputFilter? Is this something already supported or planned to be supported?