diff --git a/.cirrus.yml b/.cirrus.yml index 69be3e3..1bea24e 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -4,7 +4,6 @@ test_task: image: registry.fedoraproject.org/fedora:latest image: quay.io/centos/centos:stream9 image: docker.io/almalinux:8 - image: centos:centos7 build_script: tests/build.sh config_script: tests/config.sh run_httpd_background_script: /usr/sbin/httpd -DFOREGROUND diff --git a/.github/workflows/build-test.yaml b/.github/workflows/build-test.yaml index 94d74ba..b811c7e 100644 --- a/.github/workflows/build-test.yaml +++ b/.github/workflows/build-test.yaml @@ -19,7 +19,6 @@ jobs: - 'registry.fedoraproject.org/fedora:latest' - 'quay.io/centos/centos:stream9' - 'docker.io/almalinux:8' - - 'quay.io/centos/centos:centos7' steps: - uses: actions/checkout@v4 - name: Set the right OS in the Dockerfile diff --git a/tests/build.sh b/tests/build.sh index aa4f3da..ab399d0 100755 --- a/tests/build.sh +++ b/tests/build.sh @@ -11,10 +11,6 @@ elif type dnf 2> /dev/null ; then DNF=dnf BUILDDEP_PROVIDER='dnf-command(builddep)' BUILDDEP='dnf builddep' -elif type yum 2> /dev/null ; then - DNF=yum - BUILDDEP_PROVIDER=yum-utils - BUILDDEP=yum-builddep else exit 1 fi