-
Notifications
You must be signed in to change notification settings - Fork 34
Feat: Add Rust toolchain to windows-11-arm #77
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
Comments
FYI, this also isn't listed in the "Omitted Software" part of the docs: https://github.com/actions/partner-runner-images/blob/main/images/arm-windows-11-image.md#omitted-software Much better to simply add it though :-) |
+1 Hit this while testing Arm runners in the Rust for Windows repository. |
For anyone who wants to install - if: matrix.os == 'windows-11-arm'
name: Install rustup on Windows ARM
run: |
curl -LOs https://static.rust-lang.org/rustup/dist/aarch64-pc-windows-msvc/rustup-init.exe
./rustup-init.exe -y --default-toolchain none --no-modify-path
echo "$USERPROFILE/.cargo/bin" >> "$GITHUB_PATH"
- uses: actions-rust-lang/setup-rust-toolchain@v1 |
The just released |
Thank you for reporting this issue, we’ll be adding the rust toolchain to the next version of the windows runners image. |
Is there any estimate you can share for when that will be? Thanks. |
@alex early June is the plan. |
Thanks for providing this.
Obviously, this will vary depending on how your test matrix is set up. I believe you could use
This requires
This isn't strictly necessary; you could use Ideally, one should also check the sha256sum of |
Uh oh!
There was an error while loading. Please reload this page.
Type of issue
Describe the issue
windows-11-arm
runner currently does not come with the Rust toolchain pre-installedIn testing, that environment is supported and something like this can add Rust:
Desired functionality
Have a Rust toolchain preinstalled in the
windows-11-arm
imageThe text was updated successfully, but these errors were encountered: