mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-03-24 05:55:14 +00:00
This is usually desirable for batch processing: it lets us see exactly what is happening in the logs. Signed-off-by: Simon McVittie <smcv@collabora.com>
17 lines
349 B
YAML
17 lines
349 B
YAML
name: Build (Emscripten)
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
emscripten:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: mymindstorm/setup-emsdk@v10
|
|
with:
|
|
version: 2.0.27
|
|
- name: Configure CMake
|
|
run: emcmake cmake -B build
|
|
- name: Build
|
|
run: cmake -v --build build/
|