aboutsummaryrefslogtreecommitdiff
path: root/bbot/agent
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2021-09-09 08:43:34 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2021-09-09 11:03:59 +0200
commit99221a546b10545a7ed7af53044b088217e150eb (patch)
treec7ba826af1a1b7249bbe3d41a15a92e81924646c /bbot/agent
parent35ff21c72e65d1e01678d67c7dd985e2959d4ebf (diff)
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.
Diffstat (limited to 'bbot/agent')
-rw-r--r--bbot/agent/agent.cxx4
1 files changed, 2 insertions, 2 deletions
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");