diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2024-03-22 18:00:37 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2024-03-25 11:37:24 +0300 |
commit | 39a7404e6cddb2053a87f86935cda566c54bd4e6 (patch) | |
tree | 2a03c27435b6e37b395167cd49bd85be3a9a9ad9 /mod/mod-ci.cxx | |
parent | a7e49dbeab6c1a0500ca8fa3a1a6261b3740b6b0 (diff) |
Add tenant_service_hints
Diffstat (limited to 'mod/mod-ci.cxx')
-rw-r--r-- | mod/mod-ci.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mod/mod-ci.cxx b/mod/mod-ci.cxx index 94a6882..c067f70 100644 --- a/mod/mod-ci.cxx +++ b/mod/mod-ci.cxx @@ -392,12 +392,16 @@ function<optional<string> (const brep::tenant_service&)> brep::ci:: build_queued (const tenant_service&, const vector<build>& bs, optional<build_state> initial_state, + const build_queued_hints& hints, const diag_epilogue& log_writer) const noexcept { NOTIFICATION_DIAG (log_writer); l2 ([&]{trace << "initial_state: " - << (initial_state ? to_string (*initial_state) : "none");}); + << (initial_state ? to_string (*initial_state) : "none") + << ", hints " + << static_cast<size_t> (hints.single_package_version) << ' ' + << static_cast<size_t> (hints.single_package_config);}); return [&bs, initial_state] (const tenant_service& ts) { |