aboutsummaryrefslogtreecommitdiff
path: root/bbot/types.hxx
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/types.hxx
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/types.hxx')
-rw-r--r--bbot/types.hxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/bbot/types.hxx b/bbot/types.hxx
index 7e485f7..a39abe2 100644
--- a/bbot/types.hxx
+++ b/bbot/types.hxx
@@ -21,6 +21,8 @@
#include <libbutl/path.mxx>
#include <libbutl/optional.mxx>
+#include <libbutl/fdstream.mxx>
+#include <libbutl/lz4-stream.hxx>
#include <libbutl/vector-view.mxx>
#include <libbutl/small-vector.mxx>
#include <libbutl/standard-version.mxx>
@@ -69,6 +71,17 @@ namespace bbot
using butl::optional;
using butl::nullopt;
+ // <libbutl/fdstream.mxx>
+ //
+ using butl::auto_fd;
+ using butl::ifdstream;
+ using butl::ofdstream;
+
+ // <libbutl/lz4-stream.hxx>
+ //
+ using olz4stream = butl::lz4::ostream;
+ using ilz4stream = butl::lz4::istream;
+
// <libbutl/vector-view.mxx>
//
using butl::vector_view;