@ -48,9 +48,9 @@ def ShowActions(series, why_selected, boards_selected, builder, options):
Args :
Args :
series : Series object
series : Series object
why_selected : Dictionary where each key is a buildman argument
why_selected : Dictionary where each key is a buildman argument
provided by the user , and the value is the boards brought
provided by the user , and the value is the list of boards
in by that argument . For example , ' arm ' might bring in
brought in by that argument . For example , ' arm ' might bring
400 boards , so in this case the key would be ' arm ' and
in 400 boards , so in this case the key would be ' arm ' and
the value would be a list of board names .
the value would be a list of board names .
boards_selected : Dict of selected boards , key is target name ,
boards_selected : Dict of selected boards , key is target name ,
value is Board object
value is Board object
@ -75,9 +75,11 @@ def ShowActions(series, why_selected, boards_selected, builder, options):
print
print
for arg in why_selected :
for arg in why_selected :
if arg != ' all ' :
if arg != ' all ' :
print arg , ' : %d boards ' % why_selected [ arg ]
print arg , ' : %d boards ' % len ( why_selected [ arg ] )
if options . verbose :
print ' %s ' % ' ' . join ( why_selected [ arg ] )
print ( ' Total boards to build for each commit: %d \n ' %
print ( ' Total boards to build for each commit: %d \n ' %
why_selected [ ' all ' ] )
len ( why_selected [ ' all ' ] ) )
def DoBuildman ( options , args , toolchains = None , make_func = None , boards = None ,
def DoBuildman ( options , args , toolchains = None , make_func = None , boards = None ,
clean_dir = False ) :
clean_dir = False ) :
@ -221,6 +223,7 @@ def DoBuildman(options, args, toolchains=None, make_func=None, boards=None,
options . git_dir , count , series = None , allow_overwrite = True )
options . git_dir , count , series = None , allow_overwrite = True )
else :
else :
series = None
series = None
if not options . dry_run :
options . verbose = True
options . verbose = True
if not options . summary :
if not options . summary :
options . show_errors = True
options . show_errors = True