Add centos 6 to ci
This commit is contained in:
parent
c4fae81053
commit
ea840db62d
1 changed files with 16 additions and 0 deletions
16
.github/workflows/ci.yml
vendored
16
.github/workflows/ci.yml
vendored
|
@ -29,6 +29,22 @@ jobs:
|
||||||
- name: distcheck
|
- name: distcheck
|
||||||
run: make VERBOSE=1 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:
|
test-centos8:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: centos:8
|
container: centos:8
|
||||||
|
|
Loading…
Reference in a new issue