-
Notifications
You must be signed in to change notification settings - Fork 90
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
Reconsider including rustfmt and clippy in docker image #97
Comments
It makes sense to have a tag that doesn't include them by default for automated builders that don't need to do a full series of checks, so I think there should be another tag that includes them. Maybe a |
We talked it over in rust-lang/rustup#3078 and basically: we agree with what @abonander says. There's a reason that we recommended the minimal profile initially, because CI at the time had more "simple" builders. It doesn't apply as strongly anymore, but it would be weird to add additional tools you don't always need to the minimal profile. There currently isn't an obvious choice for what a new profile that tries to address the "we need tools" concern should have, without falling into the problems of the complete profile. And the default profile doesn't work because it would add another 600MB of documentation your CI is not going to read. We'll probably rewrite the recommendation to try to capture this nuance. Maybe in the future we will add such a "tools" profile. It's more likely we'll know what should go into it if other people, including other parts of the Rust project, feel free to add more stuff to things like Docker images instead of just using whatever recommendations we hand down from "on high". |
The docker image has a different use case than normal installations, mostly CI. And having rustfmt and clippy available by default would greatly ease their use in CI by having the necessary tools preinstalled and not requiring a network connection to install them for each CI job.
#37 was closed by reasoning that this is the responsible of rustup, but they closed it as responsible from docker-rust: rust-lang/rustup#1569 (comment). So I think it is time to reconsider including it in this repository again.
The text was updated successfully, but these errors were encountered: