From ea840db62de5dda74d133d134e8a0fd1da9b8777 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Tue, 30 Jun 2020 21:40:46 +0200 Subject: [PATCH] Add centos 6 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 ffbbf5a..397748c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,6 +29,22 @@ jobs: - name: distcheck run: make VERBOSE=1 distcheck + test-centos6: + runs-on: ubuntu-latest + container: centos:6 + steps: + - uses: actions/checkout@v1 + - name: install dependencies + run: yum install -y automake 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 + test-centos8: runs-on: ubuntu-latest container: centos:8