From a41b6622654faf07dcd4e83a7fc2c56586f48d6c Mon Sep 17 00:00:00 2001 From: ljedrz Date: Mon, 3 Mar 2025 14:49:30 +0100 Subject: [PATCH] ci: fix the Windows toolchain Signed-off-by: ljedrz --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5a9954a364..d884a8cf82 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -38,7 +38,7 @@ commands: choco uninstall rust # Install rust with rustup. Invoke-WebRequest -Uri "https://win.rustup.rs/" -OutFile "C:\rustup-init.exe" - & C:\rustup-init.exe -y --default-toolchain "stable-x86_64-pc-windows-msvc" --no-modify-path --profile minimal + & 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 $Env:Path += ";$Env:USERPROFILE\.cargo\bin" # Verify the installation. cargo --version --verbose