Skip to content

Commit

Permalink
Fix don't build compat for OpenSUSE/SLES 15.x
Browse files Browse the repository at this point in the history
  • Loading branch information
RazvanLiviuVarzaru committed Oct 17, 2024
1 parent 46c23d6 commit 39390f7
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,15 @@ def hasCompat(step):
# For s390x and the listed distros there are no compat files
if any(
builderName.find(sub) != -1
for sub in {"s390x", "fedora", "alma", "rocky", "openeuler", "suse15", "sles15"}
for sub in {
"s390x",
"fedora",
"alma",
"rocky",
"openeuler",
"suse-15",
"sles-15",
}
):
return False
if "rhel" in builderName or "centos" in builderName:
Expand Down

0 comments on commit 39390f7

Please sign in to comment.