-
Notifications
You must be signed in to change notification settings - Fork 42
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
Show progress for docker commands #9
Comments
Same request when |
Hmm, it's a bit hard to do that, as neither of those programs output the progress bar when not running under a tty. Docker could probably be solved by using the API (#7) and implementing the progress bar ourselves, but I'm not sure how to do that for rustup. |
As a workaround, could rustwide unconditionally print 'still running <command>' every 1-5 minutes, the same way that |
Even just adding a "The next steps might take a while. Hang tight!" right before starting docker tasks that are known to run for a while would still be better than just "hanging" for minutes, I think. Providing an actual progress would be even better, of course. But either way would be an improvement to the status quo. |
This should be a lot better after rust-lang/docs.rs#1360. |
When building a crate for
docs.rs
, I get the following output, followed by 15 minutes without anything happening:If I run
docker pull rustops/crates-build-env
manually on the host machine, I can see that it's trying to download a 1.3 GB image, which takes quite a while on my internet connection. Would it be possible to show this progress in rustwide so it doesn't seem like nothing is happening?The text was updated successfully, but these errors were encountered: