Add redhat to ci
This commit is contained in:
parent
1614e62f2d
commit
a23b8d558b
1 changed files with 18 additions and 0 deletions
18
.github/workflows/ci.yml
vendored
18
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue