From 6d2cbb9e58b704389f948c2c97cfb3a3067cfeda Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Wed, 19 Jul 2017 19:33:34 -0600 Subject: [PATCH] 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 Reviewed-on: https://review.coreboot.org/20660 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Stefan Reinauer Reviewed-by: Patrick Georgi --- util/abuild/abuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/abuild/abuild b/util/abuild/abuild index 8637e6ff10..f0bfcd8d9b 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -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"