From 56148207f667f5b304c9d22b0778ec3ec83fc173 Mon Sep 17 00:00:00 2001 From: Peter Keresztes Schmidt Date: Sun, 11 Apr 2021 21:05:07 +0200 Subject: [PATCH] CI: Run basic CI for Xenial Tests can't be built since Catch2 is only packaged for Groovy (20.10) --- .github/workflows/ci-xenial.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/ci-xenial.yml diff --git a/.github/workflows/ci-xenial.yml b/.github/workflows/ci-xenial.yml new file mode 100644 index 000000000..3cc016757 --- /dev/null +++ b/.github/workflows/ci-xenial.yml @@ -0,0 +1,25 @@ +name: CI Xenial + +on: + push: + branches: + - '*' + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-16.04 + + steps: + - uses: actions/checkout@v2 + with: + submodules: recursive + - name: Install dependencies + run: sudo apt-get install libavdevice-dev libcurl4-gnutls-dev libvlc-dev libvncserver-dev libdate-manip-perl libdbd-mysql-perl libsys-mmap-perl libpolkit-gobject-1-dev + - name: Prepare + run: mkdir build + - name: Configure + run: cd build && cmake .. -DBUILD_MAN=0 + - name: Build + run: cd build && make -j3 | grep --line-buffered -Ev '^(cp lib\/|Installing.+\.pm)' && (exit ${PIPESTATUS[0]})