-
Notifications
You must be signed in to change notification settings - Fork 35
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 |
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: