ci: install rustup in runner container if missing
Some checks failed
Build MIPS Binary / build (push) Failing after 1m2s

This commit is contained in:
spinline
2026-02-06 20:41:05 +03:00
parent 6014ec64e8
commit f579431098

View File

@@ -24,6 +24,10 @@ jobs:
- name: Setup Rust - name: Setup Rust
run: | run: |
if ! command -v rustup >/dev/null 2>&1; then
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
fi
. "$HOME/.cargo/env"
rustup toolchain install nightly --profile minimal rustup toolchain install nightly --profile minimal
rustup target add wasm32-unknown-unknown --toolchain nightly rustup target add wasm32-unknown-unknown --toolchain nightly
rustup component add rust-src --toolchain nightly rustup component add rust-src --toolchain nightly