From c4fae810537bb7786b255cc103af8348a681485a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Tue, 30 Jun 2020 09:28:55 +0200 Subject: [PATCH] Add centos 8 to ci --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a772d42..ffbbf5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,3 +28,19 @@ jobs: run: make VERBOSE=1 check - name: distcheck run: make VERBOSE=1 distcheck + + test-centos8: + runs-on: ubuntu-latest + container: centos:8 + steps: + - uses: actions/checkout@v2 + - name: install dependencies + run: dnf --enablerepo=PowerTools install -y perl-version automake make perl-Test-Warnings + - name: autogen + run: ./autogen + - name: configure + run: ./configure + - name: check + run: make VERBOSE=1 check + - name: distcheck + run: make VERBOSE=1 distcheck