Skip to content

Refactor: Starting widget gizmo #376

Refactor: Starting widget gizmo

Refactor: Starting widget gizmo #376

Workflow file for this run

name: Web
on: [push, pull_request, release]
jobs:
build:
name: ${{ matrix.config.name }} - Build
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Web Latest",
os: ubuntu-latest,
build_type: "Release"
}
steps:
- uses: mymindstorm/setup-emsdk@v13
- name: Checkout atta
uses: actions/checkout@v2
- name: Configure
run: |
mkdir build
cd build
emcmake cmake ..
- name: Build
run: cmake --build build --parallel --config ${{ matrix.config.build_type }}