Skip to content
Snippets Groups Projects
Commit 18a74955 authored by Sébastien Luttringer's avatar Sébastien Luttringer
Browse files

build display a cummulated build time

if there is more than one image, build display a global build time
parent 37b85f23
No related branches found
No related tags found
No related merge requests found
......@@ -118,6 +118,7 @@ def c_build(args):
'''
Build a source image in the current directory
'''
gdt = 0
for path in args.paths:
arrow("Build %s" % path)
# chdir inside path if --chdir
......@@ -131,10 +132,13 @@ def c_build(args):
# do the job
dt = simg.build(force=args.force, force_payload=args.payload,
check=not args.no_check, script=not args.no_script)
gdt += dt
arrow(u"Build time: %s" % datetime.timedelta(seconds=dt))
if args.chdir:
os.chdir(cwd)
arrowlevel(-1)
if len(args.paths) > 1:
arrow(u"Global build time: %s" % datetime.timedelta(seconds=gdt))
def c_cat(args):
'''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment