Add fedora to ci
This commit is contained in:
parent
ea840db62d
commit
af718224b3
1 changed files with 16 additions and 0 deletions
16
.github/workflows/ci.yml
vendored
16
.github/workflows/ci.yml
vendored
|
@ -60,3 +60,19 @@ jobs:
|
||||||
run: make VERBOSE=1 check
|
run: make VERBOSE=1 check
|
||||||
- name: distcheck
|
- name: distcheck
|
||||||
run: make VERBOSE=1 distcheck
|
run: make VERBOSE=1 distcheck
|
||||||
|
|
||||||
|
test-fedora:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container: fedora
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: install dependencies
|
||||||
|
run: dnf install -y perl-version automake make perl-Test-Warnings
|
||||||
|
- 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