-
-
Notifications
You must be signed in to change notification settings - Fork 402
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
Sometimes mise just hangs when executing a task #4302
Comments
The easiest way to reproduce it is:
[tasks.test]
run = "echo $1" for i in $(seq 1 20000); do mise test $i; done It's not necessary to execute anything in parallel. |
Just a random datapoint that probably doesn't help, but I couldn't reproduce this with either of these examples on a Raspberry Pi 4 running Debian Bookworm, using Perhaps the Raspberry Pi is too slow (it took just over 20 minutes for the |
I'm also on
|
I could not reproduce as well. Are you able to reproduce with the docker run --pull=always -it --rm --entrypoint bash jdxcode/mise:latest |
I cannot reproduce it in the docker image either. But I can reproduce it on:
|
A quick test on GitHub runners came back negative: https://github.com/plu/mise-test/actions/runs/13198350890/job/36844555169 So it must be something else that all my environments here have in common to trigger the hang. |
Attempting this on a more powerful Where in the code are these tasks run from? Is it |
#4314 seems to describe the situation where we saw this pop up. As soon as we either excluded tools we did not want to be installed, excluded config files altogether or installed all tools before running a task, we no longer saw task hangs. |
Discussed in #4275
Originally posted by plu January 31, 2025
We've seen this happen on CI sometimes, but I also found a way to trigger it:
mise-tasks/example
Execute:
The strange thing is, that the whole invocation of
22
in this case is missing. So it didn't printstart 22
, neitherdone 22
.Any idea what this might be?
The text was updated successfully, but these errors were encountered: