Skip to content

Commit

Permalink
feat(generate): use temp. workaround to avoid git builds on Fedora 37+
Browse files Browse the repository at this point in the history
  • Loading branch information
myii committed Dec 9, 2022
1 parent 4f8fa0b commit 705dc7b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ jobs:
distro-slug: fedora-37
display-name: Fedora 37
timeout: 20
instances: '["git-master", "latest"]'
instances: '["latest"]'


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


gentoo:
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/templates/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,19 @@
"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 = {
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 705dc7b

Please sign in to comment.