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
Adds a CI test for --use-local-toolchain.
This test will run after every push to main.
Additional cleanup to the setup as mentioned in rust-lang#3060 in next PR's. (In
interest of keeping changes small & focused).
By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 and MIT licenses.
"[3/5] Installing rust toolchain from path provided: {}",
166
+
&toolchain_path.to_string_lossy()
167
+
);
168
+
returnOk(toolchain_version);
169
+
}else{
170
+
bail!(
171
+
"The toolchain with rustc {:?} being used to setup is not the same as the one Kani used in its release bundle {:?}. Try to setup with the same version as the bundle.",
172
+
custom_toolchain_rustc_version,
173
+
rustc_version,
174
+
);
175
+
}
157
176
}
158
177
159
178
// This is the default behaviour when no explicit path to a toolchain is mentioned
0 commit comments