CI: Install Rust toolchain in setup action

The Rust-based LibJS codegen is now enabled by default on non-Windows
platforms, so CI runners need rustc and cargo available. Add the
dtolnay/rust-toolchain action to install a stable Rust toolchain.
This commit is contained in:
Andreas Kling 2026-02-23 12:21:02 +01:00 committed by Andreas Kling
parent 6cdfbd01a6
commit c736c4adb5

View file

@ -148,6 +148,10 @@ runs:
qt \
unzip
- name: 'Install Rust toolchain'
if: ${{ inputs.os != 'Windows' }}
uses: dtolnay/rust-toolchain@stable
- name: 'Install wasm-tools'
shell: bash
run: |