[coreboot-gerrit] Change in coreboot[master]: abuild: Update file locations

Martin Roth (Code Review) gerrit at coreboot.org
Thu Jul 20 03:45:19 CEST 2017


Martin Roth has uploaded this change for review. ( https://review.coreboot.org/20660


Change subject: abuild: Update file locations
......................................................................

abuild: Update file locations

The full path to the passed/failed build lists needs to be specified.
On the builders, the absolute path is passed in, which conflicted with
the ${TOP} value, causing this to fail on the builders. When TOP was
removed from the path, the builders worked correctly, but it failed when
run locally.  This fixes the path in either case.

Change-Id: Ia4370f4a2b84991edccfc723a3136b88ca27db7d
Signed-off-by: Martin Roth <martinroth at google.com>
---
M util/abuild/abuild
1 file changed, 2 insertions(+), 2 deletions(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/60/20660/1

diff --git a/util/abuild/abuild b/util/abuild/abuild
index 8637e6f..f0bfcd8 100755
--- a/util/abuild/abuild
+++ b/util/abuild/abuild
@@ -714,8 +714,8 @@
 	customizing="default configuration"
 fi
 
-FAILED_BOARDS="$TARGET/failed_boards"
-PASSED_BOARDS="$TARGET/passing_boards"
+FAILED_BOARDS="${COREBOOT_BUILD_DIR:-${TOP}/coreboot-builds}/failed_boards"
+PASSED_BOARDS="${COREBOOT_BUILD_DIR:-${TOP}/coreboot-builds}/passing_boards"
 
 if [ "$recursive" = "false" ]; then
 	rm -f "$FAILED_BOARDS" "$PASSED_BOARDS"

-- 
To view, visit https://review.coreboot.org/20660
To unsubscribe, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia4370f4a2b84991edccfc723a3136b88ca27db7d
Gerrit-Change-Number: 20660
Gerrit-PatchSet: 1
Gerrit-Owner: Martin Roth <martinroth at google.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20170720/1df903a4/attachment.html>


More information about the coreboot-gerrit mailing list