mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 23:08:01 +00:00
af39d506d9
Update Emscripten SDK to latest version `v4.0.9`. Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
20 lines
451 B
YAML
20 lines
451 B
YAML
name: "Get Emscripten SDK"
|
|
inputs:
|
|
version:
|
|
description: ""
|
|
required: false
|
|
default: "4.0.9"
|
|
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: install emsdk
|
|
shell: bash
|
|
run: |
|
|
git clone https://github.com/emscripten-core/emsdk.git ./emsdk/
|
|
cd emsdk
|
|
git checkout tags/${{ inputs.version }}
|
|
./emsdk install ${{ inputs.version }}
|
|
./emsdk activate ${{ inputs.version }}
|