From 18308a743c71e5b24efaf162bac5bbd2f7290e78 Mon Sep 17 00:00:00 2001 From: Georgy Kibardin Date: Tue, 24 May 2016 13:30:42 +0300 Subject: [PATCH] Use gzip for snapshots Shotgun has been changed to use gzip for snapshot. On the 15G snapshot data gz is 10 times faster than xz while compression rate is just 36% against 50% with gzip. For the pattern "create once - download once" this looks like a reasonable solution. Change-Id: I133ae854c619655169f6b42003087dd9cc21b8e0 Closes-Bug: #1546023 --- utils/jenkins/system_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/jenkins/system_tests.sh b/utils/jenkins/system_tests.sh index 2b1cd52c7..6c8083545 100755 --- a/utils/jenkins/system_tests.sh +++ b/utils/jenkins/system_tests.sh @@ -436,7 +436,7 @@ RunTest() { # Extract logs using fuel_logs utility if [ "${FUELLOGS_TOOL}" != "no" ]; then - for logfile in $(find "${LOGS_DIR}" -name "fail*.tar.xz" -type f); + for logfile in $(find "${LOGS_DIR}" -name "fail*.tar.[gx]z" -type f); do ./utils/jenkins/fuel_logs.py "${logfile}" > "${logfile}.filtered.log" done