more fixes
Run Simulator Tests on local RHEL9 / build (push) Failing after 3m22s
Build on RHEL9 / build (push) Successful in 3m24s
Build on RHEL8 / build (push) Successful in 4m47s
Run Simulator Tests on local RHEL8 / build (push) Failing after 5m2s

This commit is contained in:
2026-02-06 15:27:14 +01:00
parent e97edfda18
commit b759c72bb6
14 changed files with 144 additions and 158 deletions
+3 -3
View File
@@ -200,7 +200,7 @@ def runProcess(name, cmd, fp, log_file_name = None, quiet_mode=False):
Log(LogLevel.INFOBLUE, info_text, fp, True)
Log(LogLevel.INFOBLUE, 'Cmd: ' + ' '.join(cmd), fp, True)
error_log = None
captured_log = []
try:
if log_file_name:
@@ -212,8 +212,8 @@ def runProcess(name, cmd, fp, log_file_name = None, quiet_mode=False):
except subprocess.CalledProcessError as e:
print("error: ", str(e))
captured_log = e.stdout.splitlines()
pass
if not log_file_name and e.stdout:
captured_log = e.stdout.splitlines()
except Exception as e:
print("something else failed")
Log(LogLevel.ERROR, f'Failed to run {name}:{str(e)}', fp)