You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
When a rust-toolchain file is present, the first invocation of rust-toolchain will cause it to download the specified toolchain before executing the command. Toolchain starts by issuing a rustup show, which will pull the entire toolchain (with docs and all) before it has a chance to set the profile.
I expect the rustup profile to be set before it starts downloading components, to avoid accidentally downloading the rust-docs. Perhaps it should cd into a temporary folder in order to set the profile without accidentally triggering an automatic toolchain download?
The text was updated successfully, but these errors were encountered:
Description
When a
rust-toolchain
file is present, the first invocation ofrust-toolchain
will cause it to download the specified toolchain before executing the command. Toolchain starts by issuing arustup show
, which will pull the entire toolchain (with docs and all) before it has a chance to set the profile.Workflow code
https://github.com/MegatonHammer/linkle/blob/master/.github/workflows/ci.yml#L34
Notice that at the root of the repo, linkle has a
rust-toolchain
file specifying the exact rust version in use.Action output
Expected behavior
I expect the rustup profile to be set before it starts downloading components, to avoid accidentally downloading the rust-docs. Perhaps it should cd into a temporary folder in order to set the profile without accidentally triggering an automatic toolchain download?
The text was updated successfully, but these errors were encountered: