From 99221a546b10545a7ed7af53044b088217e150eb Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 9 Sep 2021 08:43:34 +0200 Subject: Compress result manifest uploaded by worker These files contain build logs and can be quite large. And large files sometimes trip up upload on Windows. --- bbot/agent/agent.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bbot/agent') diff --git a/bbot/agent/agent.cxx b/bbot/agent/agent.cxx index 31becd3..60f7271 100644 --- a/bbot/agent/agent.cxx +++ b/bbot/agent/agent.cxx @@ -836,8 +836,8 @@ try try_mkdir_p (gd); try_mkdir_p (pd); - path tf (gd / "task.manifest"); // Task manifest file. - path rf (pd / "result.manifest"); // Result manifest file. + path tf (gd / "task.manifest"); // Task manifest file. + path rf (pd / "result.manifest.lz4"); // Result manifest file. serialize_manifest (tm, tf, "task"); -- cgit v1.1