mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-06-12 16:21:05 +00:00
9c83352fdb
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 }}
|