From b5e9e3e9c5266081bdaef2c14b25648f9180c443 Mon Sep 17 00:00:00 2001 From: Jan Pazdziora Date: Wed, 3 Jul 2024 18:42:40 +0200 Subject: [PATCH] CentOS 7 is EOL. --- .cirrus.yml | 1 - .github/workflows/build-test.yaml | 1 - tests/build.sh | 4 ---- 3 files changed, 6 deletions(-) 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