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