diff --git a/vars/analysis.groovy b/vars/analysis.groovy index 83c94fac8..114a483ca 100644 --- a/vars/analysis.groovy +++ b/vars/analysis.groovy @@ -237,16 +237,16 @@ def process_outcomes() { deleteDir() } - // The complete outcome file is ~14MB compressed as I write. + // The complete outcome file is 2.1GB uncompressed / 56MB compressed as I write. // Often we just want the failures, so make an artifact with just those. // Only produce a failure file if there was a failing job (otherwise // we'd just waste time creating an empty file). if (gen_jobs.failed_builds) { sh '''\ -awk -F';' '$5 == "FAIL"' outcomes.csv >"failures.csv" +grep ';FAIL;' outcomes.csv >"failures.csv" # Compress the failure list if it is large (for some value of large) if [ "$(wc -c