From 100202920be59bb6841ccdd937c5f88c72266de3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20Ter=C3=A4s?= Date: Thu, 8 Nov 2018 10:47:28 +0200 Subject: abuild: print build start, end date and elapsed time --- abuild.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/abuild.in b/abuild.in index 42382e5..b7921f1 100644 --- a/abuild.in +++ b/abuild.in @@ -1519,11 +1519,15 @@ build_abuildrepo() { # check early if we have abuild key abuild-sign --installed logcmd "building $repo/$pkgname-$pkgver-r$pkgrel" - msg "Building $repo/$pkgname $pkgver-r$pkgrel (using $program $program_version)" + local _starttime=$(date --utc +%s) + msg "Building $repo/$pkgname $pkgver-r$pkgrel (using $program $program_version) started $(date -R)" for part in sanitycheck builddeps clean fetch unpack prepare mkusers build \ $_check rootpkg; do runpart $part done + local _endtime=$(date --utc +%s) + local _difftime=$((_endtime - _starttime)) + msg "Build complete at $(date -R) elaped time $((_difftime/3600))h $((_difftime/60%60))m $((_difftime%60))s" cleanup $CLEANUP fi update_abuildrepo_index -- cgit v1.2.3