-
-
Notifications
You must be signed in to change notification settings - Fork 406
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
Add a MISE_TASK_OUTPUT="keep-order' to not mix the task output #2347
Labels
Comments
great suggestion 👍 |
jdx
added a commit
that referenced
this issue
Dec 21, 2024
jdx
added a commit
that referenced
this issue
Dec 21, 2024
jdx
added a commit
that referenced
this issue
Dec 21, 2024
jdx
added a commit
that referenced
this issue
Dec 21, 2024
jdx
added a commit
that referenced
this issue
Dec 21, 2024
jdx
added a commit
that referenced
this issue
Dec 21, 2024
jdx
added a commit
that referenced
this issue
Dec 21, 2024
@jdx Cool thank you for adding this feature. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Mise runs tasks in parallel and as a result the lines are mixed up between the tasks.
This makes it sometimes hard to follow why the task failed.
To solve this a new MISE_TASK_OUTPUT could be made named 'keep-order' inspired by GNU parallel.
When the keep-order is enabled the tasks are still run in parallel but the output of the task is ordered by the task.
It would be a useful feature to use in case of a CI output.
Here is an example of what parallel does, it would also keep the same order in case of a multiple line output:
The disadvantage is that nothing appears until the previous task is finished.
An interactive user interface like a spindle could be used to show the current running tasks.
The text was updated successfully, but these errors were encountered: