1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-28 09:54:49 +00:00
CLK/.github/workflows/ccpp.yml

19 lines
394 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:
2023-04-23 15:38:04 +00:00
- uses: actions/checkout@v3
- name: Install dependencies
2023-11-17 15:43:50 +00:00
run:
- sudo apt-get --allow-releaseinfo-change update
- sudo apt-get --fix-missing install gcc-10 libsdl2-dev scons
- name: Make
working-directory: OSBindings/SDL
run: scons -j$(nproc --all)