summaryrefslogtreecommitdiff
path: root/round-robin.sh
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2020-09-11 10:18:32 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2020-09-11 10:19:27 +0000
commit68008561e2990222ff7c6d7733fa29f6ab37cbad (patch)
tree94c71222f1d98b9885ca1983bc4b4641fedb5a68 /round-robin.sh
parent05627cada5da8148e6674a14414ede8796e2200a (diff)
round-robin.sh: Fix QEMU bisections
Change-Id: I6f9e96686518596216020da0efe9f7903577c1ee
Diffstat (limited to 'round-robin.sh')
-rw-r--r--round-robin.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/round-robin.sh b/round-robin.sh
index 1a413fd0..e8aba4d8 100644
--- a/round-robin.sh
+++ b/round-robin.sh
@@ -401,6 +401,10 @@ build_abe ()
log="${sum%.sum}.log"
# Testsuite logs grow 50-400MB in size, so compress them to save
# disk space on ci.linaro.org.
+ # Delete previous XZ'ed log, which can occur when we are bisecting
+ # QEMU and not rebuilding compiler (therefore not cleaning compiler
+ # build/test directory).
+ rm -f "$log.xz"
xz "$log"
cp -t ${rr[top_artifacts]}/sumfiles/ "$sum" "$log.xz"
done < <(find builds/ -name "*.sum" -print0)