aboutsummaryrefslogtreecommitdiff
path: root/brep/build.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-04-24 23:23:01 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-04-24 23:28:38 +0300
commit7e8fb49f7c5829ed5a6ac4a46deb54a3e65dfad5 (patch)
tree281f12a774c07db49b53059d8c821de18b2cbbc5 /brep/build.cxx
parent0cde847a1bb31f2b6c66e3d557a8bacc0e9186c4 (diff)
Adjust build result logs page
Diffstat (limited to 'brep/build.cxx')
-rw-r--r--brep/build.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/brep/build.cxx b/brep/build.cxx
index 48235f5..d795ba6 100644
--- a/brep/build.cxx
+++ b/brep/build.cxx
@@ -33,14 +33,16 @@ namespace brep
// build
//
build::
- build (string pnm, version pvr, string cfg)
+ build (string pnm, version pvr, string cfg, string mnm, string msm)
: id (package_id (move (pnm), pvr), move (cfg)),
package_name (id.package.name),
package_version (move (pvr)),
configuration (id.configuration),
state (build_state::testing),
timestamp (timestamp_type::clock::now ()),
- forced (false)
+ forced (false),
+ machine (move (mnm)),
+ machine_summary (move (msm))
{
}
}