Martin Roth (martinroth@google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16381
-gerrit
commit 6dc2cd25cf572abadd49b9921a6448089861c28b Author: Martin Roth martinroth@google.com Date: Wed Aug 31 09:59:15 2016 -0600
abuild: Print summary at the end of abuild run
Previously, there was no final statement of whether the boards all built correctly or not. This made it easy to miss failures when looking through all of data that abuild generates.
Change-Id: I2fcfe72412fd4bf4bd9f1ecc2d4b61d049d28604 Signed-off-by: Martin Roth martinroth@google.com --- util/abuild/abuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/util/abuild/abuild b/util/abuild/abuild index a2a428b..7fd88f7 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -16,8 +16,8 @@
#set -x # Turn echo on....
-ABUILD_DATE="Oct 13, 2015" -ABUILD_VERSION="0.9.4" +ABUILD_DATE="August 31, 2016" +ABUILD_VERSION="0.9.5"
TOP=$PWD
@@ -678,4 +678,10 @@ else fi junit '</testsuite>'
+if [ $failed -eq 0 ]; then + printf "\nAll builds completed successfully.\n"; +else + printf "\nERROR: One or more builds failed.\n"; +fi + exit $failed