Skip to content

wip

wip #5

Workflow file for this run

name: Build x86 emulator
on: [push,pull_request]
jobs:
build:
name: "Build x86 emulator on Linux"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install libsdl2-dev
- name: "Generate build system"
run: cmake .
- name: "Build"
run: cmake --build .