default to nightly build (#589)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Valentin Fernandez
2025-08-12 09:56:45 -03:00
committed by GitHub
parent 540d46717b
commit 0a22251212
2 changed files with 7 additions and 1 deletions

View File

@@ -22,9 +22,13 @@ WABT_ZIP=
unamestr=`uname`
# Always install base toolchain first
# toolchain with rust-src (for panic overrdides) and the right wasm32 toolchain
rustup toolchain install $RUST_VER -c rust-src -t wasm32-unknown-unknown
rustup default $RUST_VER
echo "*** Installing nightly-$NIGHTLY_VER (sysroot build requires nightly)"
rustup toolchain install nightly-$NIGHTLY_VER -c rust-src -t wasm32-unknown-unknown
rustup default nightly-$NIGHTLY_VER
if [ "$RUST_VER" != "stable" ]; then
cargo install xargo

View File

@@ -5,3 +5,5 @@
RUST_VER=1.84
# RUST_VER=stable
NIGHTLY_VER=2024-11-22