projects
/
annotations.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
767f46c
)
annotations: report config failures in alphabetical order
author
Andrea Righi
<andrea.righi@canonical.com>
Mon, 28 Nov 2022 10:37:38 +0000
(11:37 +0100)
committer
Andrea 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
patch
|
blob
|
history
diff --git
a/annotations
b/annotations
index 7820fefde4fa447feadffa267f7a238b3a6cdbe7..1056bb55f82280176fb445339f3e7583f1738859 100755
(executable)
--- a/
annotations
+++ b/
annotations
@@
-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)