From 6ef5c767e712ad5ce35ddd283281b7351d84c5c9 Mon Sep 17 00:00:00 2001 From: Shashank Parsi <156772515+shashank-parsi@users.noreply.github.com> Date: Mon, 12 Jan 2026 15:15:57 +0530 Subject: [PATCH 1/2] Fix for SWDEV-573276 --- src/madengine/tools/run_models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/madengine/tools/run_models.py b/src/madengine/tools/run_models.py index 1eb44c33..614eec1a 100644 --- a/src/madengine/tools/run_models.py +++ b/src/madengine/tools/run_models.py @@ -1176,11 +1176,11 @@ def run(self) -> bool: if host_os.find("HOST_UBUNTU") != -1: print(self.console.sh("apt show rocm-libs -a", canFail=True)) elif host_os.find("HOST_CENTOS") != -1: - print(self.console.sh("yum info rocm-libs")) + print(self.console.sh("yum info rocm-libs", canFail=True)) elif host_os.find("HOST_SLES") != -1: - print(self.console.sh("zypper info rocm-libs")) + print(self.console.sh("zypper info rocm-libs", CanFail=True)) elif host_os.find("HOST_AZURE") != -1: - print(self.console.sh("tdnf info rocm-libs")) + print(self.console.sh("tdnf info rocm-libs", canFail=True)) else: print("ERROR: Unable to detect host OS.") self.return_status = False From 3567f3792281df4d931bc3aa2f6696233ada0810 Mon Sep 17 00:00:00 2001 From: Shashank Parsi <156772515+shashank-parsi@users.noreply.github.com> Date: Mon, 23 Feb 2026 10:19:02 +0530 Subject: [PATCH 2/2] Update run_models.py corrected typo as CanFail=True to canFail=true for SLES package --- src/madengine/tools/run_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/madengine/tools/run_models.py b/src/madengine/tools/run_models.py index 614eec1a..61e0a4ac 100644 --- a/src/madengine/tools/run_models.py +++ b/src/madengine/tools/run_models.py @@ -1178,7 +1178,7 @@ def run(self) -> bool: elif host_os.find("HOST_CENTOS") != -1: print(self.console.sh("yum info rocm-libs", canFail=True)) elif host_os.find("HOST_SLES") != -1: - print(self.console.sh("zypper info rocm-libs", CanFail=True)) + print(self.console.sh("zypper info rocm-libs", canFail=True)) elif host_os.find("HOST_AZURE") != -1: print(self.console.sh("tdnf info rocm-libs", canFail=True)) else: