1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-26 10:29:31 +00:00
CLK/.github/workflows/ccpp.yml

17 lines
416 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
2023-11-17 15:45:32 +00:00
on: [pull_request]
2019-11-14 18:40:06 +00:00
jobs:
2023-12-05 17:41:43 +00:00
build-sdl:
name: Build SDL UI
2019-11-14 18:40:06 +00:00
runs-on: ubuntu-latest
steps:
2023-12-05 17:42:30 +00:00
- name: Checkout
2023-12-05 17:44:01 +00:00
uses: actions/checkout@v4
- name: Install dependencies
2023-11-17 15:44:52 +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)