From 498b793c869384f6564fc0e2d422200321974745 Mon Sep 17 00:00:00 2001 From: Michal Nasiadka Date: Fri, 21 Feb 2025 11:59:07 +0100 Subject: [PATCH] CI: Add rocky support to process_build_logs.py Change-Id: I57e05a235359547a4477dc869e92047818dc5c15 --- tests/files/process_build_logs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/files/process_build_logs.py b/tests/files/process_build_logs.py index 22b7182273..0db5228d9e 100755 --- a/tests/files/process_build_logs.py +++ b/tests/files/process_build_logs.py @@ -30,7 +30,7 @@ parser.add_argument('-b', '--base', required=True) args = vars(parser.parse_args()) -if args['base'] not in ['centos']: +if args['base'] not in ['rocky', 'centos']: print("Non rpm-based distros are not yet supported.") sys.exit()