Skip to content

Commit 595d807

Browse files
authored
Merge pull request #2625 from ljedrz/ci/fix_windows_toolchain
[CI] Fix the Windows toolchain
2 parents 3ced248 + a41b662 commit 595d807

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ commands:
3838
choco uninstall rust
3939
# Install rust with rustup.
4040
Invoke-WebRequest -Uri "https://win.rustup.rs/" -OutFile "C:\rustup-init.exe"
41-
& C:\rustup-init.exe -y --default-toolchain "stable-x86_64-pc-windows-msvc" --no-modify-path --profile minimal
41+
& C:\rustup-init.exe -y --default-toolchain "1.83.0-x86_64-pc-windows-msvc" --no-modify-path --profile minimal # Attention - Change the MSRV in Cargo.toml and rust-toolchain as well
4242
$Env:Path += ";$Env:USERPROFILE\.cargo\bin"
4343
# Verify the installation.
4444
cargo --version --verbose

0 commit comments

Comments
 (0)