Add centos 6 to ci

This commit is contained in:
Sandro Jäckel 2020-06-30 21:40:46 +02:00 committed by Richard Hansen
parent c4fae81053
commit ea840db62d

View file

@ -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