From 8ea936b7d7a5e9c0f7a8f6600b892cc3394e3095 Mon Sep 17 00:00:00 2001 From: John Rassa Date: Sat, 28 Sep 2019 23:06:58 -0400 Subject: [PATCH] initial github actions config. runs basic build under ubuntu --- .github/workflows/ccpp.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ccpp.yml diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml new file mode 100644 index 000000000..a020bef06 --- /dev/null +++ b/.github/workflows/ccpp.yml @@ -0,0 +1,22 @@ +name: C/C++ CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + with: + submodules: true + - name: configure + run: | + sudo apt-get update + sudo apt-get install libsdl2-dev libfreeimage-dev libfreetype6-dev libcurl4-openssl-dev rapidjson-dev libasound2-dev libgl1-mesa-dev build-essential cmake fonts-droid-fallback libvlc-dev libvlccore-dev vlc-bin + shell: bash + - name: make + run: | + cmake . + make + shell: bash