aboutsummaryrefslogtreecommitdiff
path: root/libbbot/manifest.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-05-03 12:34:20 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-05-03 12:34:20 +0300
commit32fc535d7d9e7cea238d8769867372943c9602c1 (patch)
tree29e8413dcf1cc984bddfdab966b4d714dc636ff0 /libbbot/manifest.hxx
parentf7d8a2c9a447e3071f0ed66e68ae636f1ac4a3dd (diff)
Add support for toolchain name/version in task request manifest
Diffstat (limited to 'libbbot/manifest.hxx')
-rw-r--r--libbbot/manifest.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/libbbot/manifest.hxx b/libbbot/manifest.hxx
index 025efc7..a42eeea 100644
--- a/libbbot/manifest.hxx
+++ b/libbbot/manifest.hxx
@@ -68,9 +68,13 @@ namespace bbot
machine_header_manifests machines;
task_request_manifest (std::string a,
+ std::string n,
+ butl::standard_version v,
butl::optional<std::string> f,
machine_header_manifests m)
: agent (std::move (a)),
+ toolchain_name (std::move (n)),
+ toolchain_version (std::move (v)),
fingerprint (std::move (f)),
machines (std::move (m)) {}