1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-03 11:30:02 +00:00
CLK/.github/workflows/ccpp.yml

17 lines
369 B
YAML
Raw Normal View History

2019-11-14 18:54:24 +00:00
name: SDL/Ubuntu
2019-11-14 18:40:06 +00:00
on: [push, pull_request]
2019-11-14 18:40:06 +00:00
jobs:
build:
runs-on: ubuntu-latest
2019-11-14 18:40:06 +00:00
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get --allow-releaseinfo-change update && sudo apt-get --fix-missing install libsdl2-dev scons
- name: Make
working-directory: OSBindings/SDL
run: scons -j$(nproc --all)