From: Michael Ellerman Date: Thu, 11 Jun 2015 05:13:41 +0000 (+1000) Subject: do_build: Report the time builds take X-Git-Url: http://git.ozlabs.org/?a=commitdiff_plain;ds=sidebyside;h=5fa6bbbe7c418b4d705c1aa84fa4f22473ff8bd7;p=next-scripts do_build: Report the time builds take --- diff --git a/do_build b/do_build index 400bb91..3e25833 100755 --- a/do_build +++ b/do_build @@ -25,19 +25,19 @@ ssh root@"$build_host" unshare -n su $(id -u -n) <<-EOF d=../powerpc_ppc64_defconfig [ -d \$d ] || mkdir \$d cross -n -N -a powerpc64 -k powerpc -c $gcc_version O=\$d ppc64_defconfig - cross -n -N -a powerpc64 -k powerpc -c $gcc_version O=\$d -j$j_factor -s + time cross -n -N -a powerpc64 -k powerpc -c $gcc_version O=\$d -j$j_factor -s echo Building: x86_64 allmodconfig d=../x86_64_allmodconfig [ -d \$d ] || mkdir \$d cross -n -N -a x86_64 -c $gcc_version O=\$d allmodconfig - cross -n -N -a x86_64 -c $gcc_version O=\$d -j$j_factor -s + time cross -n -N -a x86_64 -c $gcc_version O=\$d -j$j_factor -s echo Building: arm multi_v7_defconfig d=../arm_multi_v7_defconfig [ -d \$d ] || mkdir \$d cross -n -N -a arm -c $gcc_version O=\$d multi_v7_defconfig - cross -n -N -a arm -c $gcc_version O=\$d -j$j_factor -s + time cross -n -N -a arm -c $gcc_version O=\$d -j$j_factor -s rm .scmversion EOF