From 0004982c90ca3ed90ac0717459ded479fa7256d9 Mon Sep 17 00:00:00 2001 From: Razvan-Liviu Varzaru Date: Sun, 18 Jan 2026 15:44:01 +0200 Subject: [PATCH] MDBF-1157 - rpmlint skip for sles 16 - sles 12 is eol - rpmlint pkg not presenet in sles 16 (all arches) --- utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/utils.py b/utils.py index bb4487a5..049bde97 100644 --- a/utils.py +++ b/utils.py @@ -562,8 +562,7 @@ def hasS3(props): def hasRpmLint(step: BuildStep) -> str: builder_name = step.getProperty("buildername") - # The step fails on s390x SLES 12 due to permissions issues - if "s390x-sles-12" in builder_name: + if "sles-1600" in builder_name: return False return True