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:
parent
6cdfbd01a6
commit
c736c4adb5
1 changed files with 4 additions and 0 deletions
4
.github/actions/setup/action.yml
vendored
4
.github/actions/setup/action.yml
vendored
|
|
@ -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: |
|
||||
|
|
|
|||
Loading…
Reference in a new issue