diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2024-03-11 18:18:16 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2024-03-12 16:33:19 +0300 |
commit | 351f89ffe10a2f3aadfbc3a80704b5954dc356ca (patch) | |
tree | a5408bb83f6fc9a4479639d81ef85730a5c3755c /mod/mod-build-task.cxx | |
parent | 057a930bc6d1fe74f5f1572dff3fa7d5e52cd551 (diff) |
Adapt to build auxiliary machines related changes in libbpkg and libbbot
Diffstat (limited to 'mod/mod-build-task.cxx')
-rw-r--r-- | mod/mod-build-task.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mod/mod-build-task.cxx b/mod/mod-build-task.cxx index 1a06ce1..0cf59c6 100644 --- a/mod/mod-build-task.cxx +++ b/mod/mod-build-task.cxx @@ -409,6 +409,9 @@ handle (request& rq, response& rs) bool module_pkg (pn.string ().compare (0, 10, "libbuild2-") == 0); + // Note that the auxiliary environment is crafted by the bbot agent + // after the auxiliary machines are booted. + // task_manifest task (move (pn), move (p.version), move (r->location), @@ -417,8 +420,10 @@ handle (request& rq, response& rs) move (tests), b.dependency_checksum, cm.machine->name, + {} /* auxiliary_machines */, // @@ TMP AUXILIARY cm.config->target, cm.config->environment, + "" /* auxiliary_environment */, cm.config->args, move (pc.arguments), belongs (*cm.config, module_pkg ? "build2" : "host"), |