diff --git a/.github/workflows/copr_build.yml b/.github/workflows/copr_build.yml index d82e7a810ee..b09481045e5 100644 --- a/.github/workflows/copr_build.yml +++ b/.github/workflows/copr_build.yml @@ -69,8 +69,8 @@ jobs: uses: next-actions/copr/filter-chroots@master with: coprcfg: ${{ steps.copr.outputs.coprcfg }} - filter: "fedora-.+-x86_64|centos-stream-9-x86_64" - exclude: "fedora-eln-.+" + filter: "fedora-.+-x86_64|centos-stream-.*-x86_64" + exclude: "fedora-eln-.+|centos-stream-8-x86_64" - name: Create copr project uses: next-actions/copr/create-project@master diff --git a/contrib/ci/deps.sh b/contrib/ci/deps.sh index 4f8faaf0992..c9cbce0180b 100644 --- a/contrib/ci/deps.sh +++ b/contrib/ci/deps.sh @@ -51,7 +51,9 @@ if [[ "$DISTRO_BRANCH" == -redhat-* ]]; then if [[ "$DISTRO_BRANCH" == -redhat-fedora-4[0-9]* || "$DISTRO_BRANCH" == -redhat-fedora-3[7-9]* || "$DISTRO_BRANCH" == -redhat-redhatenterprise*-9.*- || - "$DISTRO_BRANCH" == -redhat-centos*-9*- ]]; then + "$DISTRO_BRANCH" == -redhat-redhatenterprise*-10.*- || + "$DISTRO_BRANCH" == -redhat-centos*-9*- || + "$DISTRO_BRANCH" == -redhat-centos*-10*- ]]; then DEPS_LIST+=( python3-dbus python3-ldap diff --git a/contrib/ci/get-matrix.py b/contrib/ci/get-matrix.py index fa4eae96e3e..8a2f8a85756 100755 --- a/contrib/ci/get-matrix.py +++ b/contrib/ci/get-matrix.py @@ -38,7 +38,7 @@ def get_fedora_matrix(): def get_centos_matrix(): - return ['centos-9'] + return ['centos-9', 'centos-10'] def get_other_matrix():