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@google.com> Reviewed-on: https://review.coreboot.org/20660 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
e203aa1d58
commit
6d2cbb9e58
|
@ -714,8 +714,8 @@ if [ "$customizing" = "" ]; then
|
|||
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"
|
||||
|
|
Loading…
Reference in New Issue