add s390x machine definition to fifloader.py

This commit is contained in:
Trevor Cooper 2024-01-28 16:20:18 -08:00
parent 4b1747db8c
commit 98b38f73d0
Signed by: tcooper
GPG Key ID: 52364D7BBCEB35B8
1 changed files with 5 additions and 0 deletions

View File

@ -212,6 +212,11 @@ def generate_job_templates(products, profiles, testsuites):
jobtemplate['group_name'] = "Rocky PowerPC Updates"
else:
jobtemplate['group_name'] = "Rocky PowerPC"
elif jobtemplate['machine_name'] in ('s390x'):
if 'updates' in product['flavor']:
jobtemplate['group_name'] = "Rocky s390x Updates"
else:
jobtemplate['group_name'] = "Rocky s390x"
elif jobtemplate['machine_name'] in ('aarch64', 'ARM'):
if 'updates' in product['flavor']:
jobtemplate['group_name'] = "Rocky AArch64 Updates"