summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--round-robin.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/round-robin.sh b/round-robin.sh
index 94791172..9c2d68e4 100644
--- a/round-robin.sh
+++ b/round-robin.sh
@@ -182,7 +182,11 @@ prepare_abe ()
(
set -euf -o pipefail
- clone_or_update_repo abe tested https://git-us.linaro.org/toolchain/abe.git > /dev/null
+ local abe_branch=tested
+ if [ x"${rr[ci_project]}" = x"tcwg_gnu_native_check_gdb" ]; then
+ abe_branch=tcwg_gnu_native
+ fi
+ clone_or_update_repo abe "$abe_branch" https://git-us.linaro.org/toolchain/abe.git > /dev/null
local workspace
workspace=$(pwd)
@@ -440,7 +444,7 @@ build_abe ()
xz "$log"
cp "$log.xz" ${rr[top_artifacts]}/sumfiles/
) &
- done < <(find builds/ -name "*.sum" -print0)
+ done < <(find builds/ \( -name "*.sum" -not -path "*/gdb/testsuite/outputs/*" \) -print0)
# Wait for logs to compress
wait
fi