1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-07 08:28:57 +00:00
CLK/.github/workflows/ccpp.yml

17 lines
370 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:
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: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)