Skip to content

wip3

wip3 #42

Workflow file for this run

name: Build x86 emulator

Check failure on line 1 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

(Line: 7, Col: 5): Unexpected value 'matrix', (Line: 7, Col: 5): There's not enough info to determine what you meant. Add one of these properties: cancel-timeout-minutes, container, continue-on-error, defaults, env, environment, outputs, runs-on, secrets, services, snapshot, steps, timeout-minutes, uses, with
on: [push,pull_request]
jobs:
strategy:
matrix:
config:
- name: linux
os: ubuntu-latest
- name: maxos
os: macos-latest
build1:
name: Build x86 emulator on Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: libsdl-org/setup-sdl@main
if: runner.os == 'Linux'
id: sdl
with:
install-linux-dependencies: true
version: 2.30.9
- name: brew install
if: runner.os == 'macOS'
run: brew install -q sdl2
- name: Generate build system
run: cmake .
- name: Build
run: cmake --build .