attempt some CI building using github actions

This commit is contained in:
notaz 2023-06-14 00:45:13 +03:00 committed by irixxxx
parent f20ad52307
commit 842f4e44d4
4 changed files with 49 additions and 0 deletions

17
.github/workflows/ci-linux.yml vendored Normal file
View file

@ -0,0 +1,17 @@
name: CI (Linux)
on: [push, pull_request]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Install dependencies
run: |
sudo apt-get update -qq
sudo apt-get install -y libsdl1.2-dev libasound2-dev libpng-dev libz-dev
- name: configure
run: DUMP_CONFIG_LOG=1 ./configure
- name: make
run: make