From a23b8d558b71922e5586a41cb42b48ef9f9d4c81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 1 Jul 2020 02:01:50 +0200 Subject: [PATCH] Add redhat to ci --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e65d8aa..082ff40 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,3 +76,21 @@ jobs: run: make VERBOSE=1 check - name: distcheck run: make VERBOSE=1 distcheck + + test-redhat: + runs-on: ubuntu-latest + # we use redhats univeral base image which is not available on docker hub + # https://catalog.redhat.com/software/containers/ubi7/ubi/5c3592dcd70cc534b3a37814 + container: registry.access.redhat.com/ubi7/ubi + steps: + - uses: actions/checkout@v2 + - name: install dependencies + run: yum install -y perl-version automake make perl-Test-Simple + - name: autogen + run: ./autogen + - name: configure + run: ./configure + - name: check + run: make VERBOSE=1 check + - name: distcheck + run: make VERBOSE=1 distcheck