Skip to content

Fixed runtime to compile with gcc. #625

Fixed runtime to compile with gcc.

Fixed runtime to compile with gcc. #625

Workflow file for this run

name: Build JS
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/setup-node@v3
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- name: Setup emsdk
uses: mymindstorm/setup-emsdk@v11
with:
version: 3.1.43
actions-cache-folder: "emsdk-cache"
- name: Install premake
run: |
wget https://github.com/premake/premake-core/releases/download/v5.0.0-alpha16/premake-5.0.0-alpha16-linux.tar.gz
tar -xvf premake-5.0.0-alpha16-linux.tar.gz
sudo chmod a+x premake5
sudo mv premake5 /usr/local/bin
- name: Install modules
run: cd js && npm install
- name: Setup Ninja
uses: seanmiddleditch/gha-setup-ninja@master
- name: Build
env:
PAT_GITHUB: ${{ secrets.PAT_GITHUB }}
run: cd js && ./build.sh
- name: Run tests
run: cd js && npm test