Rust's recent update to libstd of the wasm32-wasi target turned out to be buggy with respect to fetching the process arguments, so we'll need to wait on a fix there before we can run these tests with nightly again.
install-rust
A small github action to install rustup and a Rust toolchain. This is
generally expressed inline, but it was repeated enough in this repository it
seemed worthwhile to extract.
Some gotchas:
- Can't
--self-updateon Windows due to permission errors (a bug in Github Actions) rustupisn't installed on macOS (a bug in Github Actions)
When the above are fixed we should delete this action and just use this inline:
- run: rustup update $toolchain && rustup default $toolchain
shell: bash