feat(generate): use temp. workaround to avoid git builds on Fedora 37+

This commit is contained in:
Imran Iqbal 2022-12-09 06:45:59 +00:00
parent 4f8fa0bf45
commit 705dc7b801
No known key found for this signature in database
GPG key ID: 6D8629439D2B7819
2 changed files with 17 additions and 2 deletions

View file

@ -375,7 +375,7 @@ jobs:
distro-slug: fedora-37
display-name: Fedora 37
timeout: 20
instances: '["git-master", "latest"]'
instances: '["latest"]'
fedora-38:
@ -389,7 +389,7 @@ jobs:
distro-slug: fedora-38
display-name: Fedora 38
timeout: 20
instances: '["git-master", "latest"]'
instances: '["latest"]'
gentoo:

View file

@ -212,6 +212,19 @@ GIT_VERSION_BLACKLIST = [
"nightly",
]
# TODO: Revert the commit relating to this section, once the Git-based builds
# have been fixed for the distros listed below
#
# Apparent failure is:
#
# /usr/lib/python3.11/site-packages/setuptools/command/install.py:34:
# SetuptoolsDeprecationWarning: setup.py install is deprecated.
# Use build and pip and other standards-based tools.
GIT_DISTRO_BLACKLIST = [
"fedora-37",
"fedora-38",
]
LATEST_PKG_BLACKLIST = []
DISTRO_DISPLAY_NAMES = {
@ -472,6 +485,8 @@ def generate_test_jobs():
if bootstrap_type == "git":
if salt_version in GIT_VERSION_BLACKLIST:
continue
if distro in GIT_DISTRO_BLACKLIST:
continue
BLACKLIST = {
"3003": BLACKLIST_3003,