diff --git a/.github/workflows/copr_build.yml b/.github/workflows/copr_build.yml index d82e7a810ee..82fd09126df 100644 --- a/.github/workflows/copr_build.yml +++ b/.github/workflows/copr_build.yml @@ -69,7 +69,7 @@ jobs: uses: next-actions/copr/filter-chroots@master with: coprcfg: ${{ steps.copr.outputs.coprcfg }} - filter: "fedora-.+-x86_64|centos-stream-9-x86_64" + filter: "fedora-.+-x86_64|centos-stream-9-x86_64|centos-stream-10-x86_64" exclude: "fedora-eln-.+" - name: Create copr project diff --git a/contrib/ci/deps.sh b/contrib/ci/deps.sh index f9c95150191..90d31011c85 100644 --- a/contrib/ci/deps.sh +++ b/contrib/ci/deps.sh @@ -52,7 +52,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():