summaryrefslogtreecommitdiff
path: root/round-robin.sh
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2021-08-11 12:08:04 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2021-08-11 12:08:04 +0000
commit74055c0dd92145b967a659e4223b2ef0aee782c3 (patch)
tree3e81f10db93898a4061f30cf53920888df3058ce /round-robin.sh
parent445697fd48a2e12d5d2c891ee2e863b6658a6eeb (diff)
round-robin.sh: Use custom ABE branch for GDB testing
Change-Id: Ia635ae87869e5a21bd471f4e583fdccbba39982c
Diffstat (limited to 'round-robin.sh')
-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