We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Drake always logs target names before executing the targets. It would be cool if those targets is collapsible/expandible in GitHub Actions, like so:
target 1 target 1 logs target 2 target 2 logs
This can be achieved by printing the following to stdout:
::group::target 1 target 1 logs ::endgroup:: ::group::target 2 target 2 logs ::endgroup::
Add a way to customize logging of target names.
The text was updated successfully, but these errors were encountered:
You could filter the output e.g. using sed(1):
NO_COLOR=yes drake test | sed -r 's/^(.*): started$/::group::\1/; s/^(.*): finished.*$/::endgroup::/'
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Drake always logs target names before executing the targets. It would be cool if those targets is collapsible/expandible in GitHub Actions, like so:
This can be achieved by printing the following to stdout:
Request
Add a way to customize logging of target names.
The text was updated successfully, but these errors were encountered: