ci: Combine RedHat UBI with Fedora
This commit is contained in:
parent
c0ba4b7d91
commit
08c914c660
1 changed files with 17 additions and 28 deletions
45
.github/workflows/ci.yml
vendored
45
.github/workflows/ci.yml
vendored
|
@ -47,23 +47,37 @@ jobs:
|
||||||
- name: distribution tarball is complete
|
- name: distribution tarball is complete
|
||||||
run: ./.github/workflows/scripts/dist-tarball-check
|
run: ./.github/workflows/scripts/dist-tarball-check
|
||||||
|
|
||||||
test-fedora:
|
test-fedora-like:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
image:
|
image:
|
||||||
- fedora:39
|
- fedora:39
|
||||||
- fedora:latest
|
- fedora:latest
|
||||||
- fedora:rawhide
|
- fedora:rawhide
|
||||||
|
# RedHat UBI is mostly garbage due to a profound lack of basic
|
||||||
|
# packages. It is tested anyway because it's the closest available
|
||||||
|
# approximation of RHEL. Some of the packages needed for some tests
|
||||||
|
# aren't available, so those tests will be skipped. I guess it's
|
||||||
|
# still better than nothing.
|
||||||
|
- registry.access.redhat.com/ubi7/ubi:latest
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: ${{ matrix.image }}
|
image: ${{ matrix.image }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: install dependencies
|
- name: install dependencies
|
||||||
|
# The --skip-broken argument works around RedHat UBI's missing packages.
|
||||||
|
# (They're only used for testing, so it's OK to not install them.)
|
||||||
run: |
|
run: |
|
||||||
dnf --refresh install -y \
|
inst="dnf --refresh --skip-broken install -y"
|
||||||
|
case '${{ matrix.image }}' in
|
||||||
|
# RedHat UBI 7 (RHEL 7) doesn't have dnf.
|
||||||
|
*ubi7*) inst="yum --skip-broken install -y";;
|
||||||
|
esac
|
||||||
|
${inst} \
|
||||||
automake \
|
automake \
|
||||||
findutils \
|
findutils \
|
||||||
|
iproute \
|
||||||
make \
|
make \
|
||||||
curl \
|
curl \
|
||||||
perl \
|
perl \
|
||||||
|
@ -74,6 +88,7 @@ jobs:
|
||||||
perl-Test-MockModule \
|
perl-Test-MockModule \
|
||||||
perl-Test-TCP \
|
perl-Test-TCP \
|
||||||
perl-Test-Warnings \
|
perl-Test-Warnings \
|
||||||
|
perl-core \
|
||||||
net-tools \
|
net-tools \
|
||||||
;
|
;
|
||||||
- name: autogen
|
- name: autogen
|
||||||
|
@ -84,29 +99,3 @@ jobs:
|
||||||
run: make VERBOSE=1 AM_COLOR_TESTS=always check
|
run: make VERBOSE=1 AM_COLOR_TESTS=always check
|
||||||
- name: distcheck
|
- name: distcheck
|
||||||
run: make VERBOSE=1 AM_COLOR_TESTS=always distcheck
|
run: make VERBOSE=1 AM_COLOR_TESTS=always distcheck
|
||||||
|
|
||||||
test-redhat-ubi7:
|
|
||||||
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 \
|
|
||||||
automake \
|
|
||||||
make \
|
|
||||||
perl-HTTP-Daemon \
|
|
||||||
perl-IO-Socket-INET6 \
|
|
||||||
perl-core \
|
|
||||||
iproute \
|
|
||||||
;
|
|
||||||
- name: autogen
|
|
||||||
run: ./autogen
|
|
||||||
- name: configure
|
|
||||||
run: ./configure
|
|
||||||
- name: check
|
|
||||||
run: make VERBOSE=1 AM_COLOR_TESTS=always check
|
|
||||||
- name: distcheck
|
|
||||||
run: make VERBOSE=1 AM_COLOR_TESTS=always distcheck
|
|
||||||
|
|
Loading…
Reference in a new issue