2020-03-06 11:45:16 +01:00
|
|
|
name: Continuous Integration
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: install
|
|
|
|
run: sudo apt-get install -y libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev libpango1.0-dev
|
2020-04-02 19:26:55 +02:00
|
|
|
- name: autoconf and locale
|
|
|
|
run: ./autogen.sh
|
2020-03-06 11:45:16 +01:00
|
|
|
- name: configure
|
|
|
|
run: ./configure
|
|
|
|
- name: build
|
|
|
|
run: make
|