build: sort names of not build/skipped images
Change-Id: I21fb133b051bed2f0dab4a6459d14aa06e27eed8
This commit is contained in:
parent
43c70fed42
commit
5a2ce809ea
@ -888,7 +888,7 @@ class KollaWorker(object):
|
||||
LOG.debug("=====================================")
|
||||
LOG.debug("Images not matched for build by regex")
|
||||
LOG.debug("=====================================")
|
||||
for name in self.image_statuses_unmatched.keys():
|
||||
for name in sorted(self.image_statuses_unmatched.keys()):
|
||||
LOG.debug(name)
|
||||
results['not_matched'].append({
|
||||
'name': name,
|
||||
@ -898,7 +898,7 @@ class KollaWorker(object):
|
||||
LOG.debug("================================")
|
||||
LOG.debug("Images skipped due build options")
|
||||
LOG.debug("================================")
|
||||
for name in self.image_statuses_skipped.keys():
|
||||
for name in sorted(self.image_statuses_skipped.keys()):
|
||||
LOG.debug(name)
|
||||
results['skipped'].append({
|
||||
'name': name,
|
||||
|
Loading…
Reference in New Issue
Block a user