Set nightly as the default toolchain in CI#218
Set nightly as the default toolchain in CI#218fitzgen wants to merge 2 commits intobytecodealliance:mainfrom
Conversation
So that random direct invocations of `rustc` or `cargo` in our CI scripts get the right version.
|
Not sure this worked? |
|
Interesting. Any idea why the build script would be using 1.65.0 despite us specifying nightly as the default version (which is currently 1.68.0)? AFAICT, the CI action runs in the wasmtime engine directory. That |
|
The action to install the rust toolchain is installing 1.68.0-nightly, so somehow the build script ends up getting a different one. https://github.com/bytecodealliance/sightglass/actions/runs/3875774546/jobs/6608773907#step:3:35 |
|
Maybe something weird is going on with CI: I can see the task you linked to seems to have passed and the build environment that is emitted has the correct |
So that random direct invocations of
rustcorcargoin our CI scripts get the right version.