diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2022-08-25 20:54:40 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2022-08-29 17:18:19 +0300 |
commit | 6613fbc2a3fc96b491b6691145c72c5a9550dc84 (patch) | |
tree | bb1116efb5b475608458038240a4ba80e32b99af /libbrep/build.cxx | |
parent | 340cf0935a199240f6daaab8a347e22172f4d15b (diff) |
Add target to build configuration id
Diffstat (limited to 'libbrep/build.cxx')
-rw-r--r-- | libbrep/build.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libbrep/build.cxx b/libbrep/build.cxx index 9cbad8f..03775c4 100644 --- a/libbrep/build.cxx +++ b/libbrep/build.cxx @@ -58,20 +58,22 @@ namespace brep package_name_type pnm, version pvr, string cfg, + target_triplet trg, string tnm, version tvr, optional<string> inr, optional<string> afp, optional<string> ach, string mnm, string msm, - butl::target_triplet trg, string ccs, string mcs) : id (package_id (move (tnt), move (pnm), pvr), move (cfg), + move (trg), move (tnm), tvr), tenant (id.package.tenant), package_name (id.package.name), package_version (move (pvr)), configuration (id.configuration), + target (id.target), toolchain_name (id.toolchain_name), toolchain_version (move (tvr)), state (build_state::building), @@ -81,7 +83,6 @@ namespace brep agent_fingerprint (move (afp)), agent_challenge (move (ach)), machine (move (mnm)), machine_summary (move (msm)), - target (move (trg)), controller_checksum (move (ccs)), machine_checksum (move (mcs)) { @@ -93,15 +94,18 @@ namespace brep build_delay (string tnt, package_name_type pnm, version pvr, string cfg, + target_triplet trg, string tnm, version tvr, timestamp ptm) : id (package_id (move (tnt), move (pnm), pvr), move (cfg), + move (trg), move (tnm), tvr), tenant (id.package.tenant), package_name (id.package.name), package_version (move (pvr)), configuration (id.configuration), + target (id.target), toolchain_name (id.toolchain_name), toolchain_version (move (tvr)), package_timestamp (ptm) |