summaryrefslogtreecommitdiff
path: root/round-robin.sh
diff options
context:
space:
mode:
Diffstat (limited to 'round-robin.sh')
-rw-r--r--round-robin.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/round-robin.sh b/round-robin.sh
index ff08dd20..1a413fd0 100644
--- a/round-robin.sh
+++ b/round-robin.sh
@@ -399,7 +399,10 @@ build_abe ()
mkdir -p ${rr[top_artifacts]}/sumfiles
while IFS= read -r -d '' sum; do
log="${sum%.sum}.log"
- cp -t ${rr[top_artifacts]}/sumfiles/ "$sum" "$log"
+ # Testsuite logs grow 50-400MB in size, so compress them to save
+ # disk space on ci.linaro.org.
+ xz "$log"
+ cp -t ${rr[top_artifacts]}/sumfiles/ "$sum" "$log.xz"
done < <(find builds/ -name "*.sum" -print0)
fi
)