You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
Is this related to the actions-rs Actions?
If you think it's a problem related to Github Actions in general, use GitHub Community forum instead: https://github.community
Is this something you can debug and fix? Send a pull request! Bug fixes and documentation fixes are welcome.
Description
This action runs cargo with arguments. When cargo finds problems they are annotated in a way GitHub can display them at the exact file / line.
When --color=always is added this doesn't work anymore.
You can reproduce this by creating some issue which cargo highlights. This works properly. When --color=always is added the output reduces to "[…] failed with exit code 101".
--color=always is probably not working because of additional escape codes in the output.
Personal opinion: I do not think its interesting to support color output. I think outputting a warning when --color is specified is helpful to prevent people from running into this issue.
The text was updated successfully, but these errors were encountered:
Do the checklist before filing an issue:
actions-rs
Actions?If you think it's a problem related to Github Actions in general, use GitHub Community forum instead: https://github.community
Description
This action runs cargo with arguments. When cargo finds problems they are annotated in a way GitHub can display them at the exact file / line.
When
--color=always
is added this doesn't work anymore.You can reproduce this by creating some issue which cargo highlights. This works properly. When
--color=always
is added the output reduces to "[…] failed with exit code 101".Workflow code
Action output
works
https://github.com/EdJoPaTo/rust-binary-metafile-template/actions/runs/1399909575
works.zip
doesn't work
https://github.com/EdJoPaTo/rust-binary-metafile-template/actions/runs/1399969307
doesnt-work.zip
Expected behavior
Described above
Additional context
--color=always
is probably not working because of additional escape codes in the output.Personal opinion: I do not think its interesting to support color output. I think outputting a warning when
--color
is specified is helpful to prevent people from running into this issue.The text was updated successfully, but these errors were encountered: