mirror of
https://github.com/TomHarte/CLK.git
synced 2025-08-07 23:25:00 +00:00
Add build workflow
This commit is contained in:
22
.github/workflows/ccpp.yml
vendored
Normal file
22
.github/workflows/ccpp.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
name: C/C++ CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: install dependencies
|
||||||
|
run: apt-get install libsdl2-dev scons
|
||||||
|
- name: make
|
||||||
|
run: cd OSBindings/SDL; scons
|
Reference in New Issue
Block a user