-
Notifications
You must be signed in to change notification settings - Fork 900
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
do_msvc_check: set default choice to no #2529
Conversation
Before that the behavior on Windows when running rustup-init without having build tools installed was to continue. Now the user need to explicitly choose to continue installation, and thus we are making sure they are carefully reading the warning message. Closes: #2514
Before I can accept this (and I really do want to) we should take a moment to reflect on whether this might break anyone's CI. Is it plausible anyone would be programmatically responding to this prompt because they know they're using mingw, but without passing |
I guess that's plausible. But I think that users should be passing So this could be a breaking change for existing CI. What should we do? |
We make a call, my vote is with you - that if you want to deal with prompts like this you should be passing |
I think this needs a release note and perhaps even a doc update - I haven't reviewed the doc instructions but I have a suspicion that we have something in there that overlaps this. |
You'll need to be more specific about your question; the builds look fine to me. |
The caches aren't always executed cleanly because of limits on github actions' side. Don't worry about them. |
I think that @rbtcollins is right that we need to double check the documentation. Can you go through the installation instructions for Windows and see if we need to tweak that a bit to explain this. If we decide to merge then I'm happy to write the release note as part of the announce / changelog when we do the release, I'll just have to make an issue to track that. |
Hello, I have reviewed the Windows install instructions here and haven't found something to update. The documentation looks valid and up-to-date AFAIC. |
I agree that the docs don't mention anything to the effect of the questions, nor their defaults. All I'm wondering is if there's value in mentioning something since those who use @rbtcollins If you agree, I suggest we merge this and ensure that a release note mentions the change. |
Hello there! Any news on this changes? :) |
Before that the behavior on Windows when running rustup-init
without having build tools installed was to continue.
Now the user need to explicitly choose to continue installation,
and thus we are making sure they are carefully reading the warning
message.
Closes: #2514