annotations: report config failures in alphabetical order
authorAndrea Righi <andrea.righi@canonical.com>
Mon, 28 Nov 2022 10:37:38 +0000 (11:37 +0100)
committerAndrea Righi <andrea.righi@canonical.com>
Mon, 28 Nov 2022 10:37:38 +0000 (11:37 +0100)
This allows to review config check failures across multiple
architectures.

Signed-off-by: Andrea Righi <andrea.righi@canonical.com>
annotations

index 7820fefde4fa447feadffa267f7a238b3a6cdbe7..1056bb55f82280176fb445339f3e7583f1738859 100755 (executable)
@@ -115,7 +115,7 @@ def do_check(args):
     c_configs = c.config.keys()
 
     # Validate .config against annotations
-    for conf in a_configs | c_configs:
+    for conf in sorted(a_configs | c_configs):
         if conf in SKIP_CONFIGS:
             continue
         entry = a.search_config(config=conf, arch=args.arch, flavour=args.flavour)