aboutsummaryrefslogtreecommitdiff
path: root/brep/build
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
parent0cde847a1bb31f2b6c66e3d557a8bacc0e9186c4 (diff)
Adjust build result logs page
Diffstat (limited to 'brep/build')
-rw-r--r--brep/build9
1 files changed, 8 insertions, 1 deletions
diff --git a/brep/build b/brep/build
index 42798bb..43ca230 100644
--- a/brep/build
+++ b/brep/build
@@ -104,7 +104,9 @@ namespace brep
// Create the build object with the testing state, non-existent status,
// the timestamp set to now and the forced flag set to false.
//
- build (string name, version, string configuration);
+ build (string name, version,
+ string configuration,
+ string machine, string machine_summary);
build_id id;
@@ -126,6 +128,11 @@ namespace brep
//
optional<result_status> status;
+ // Present only if the state is 'testing' or 'tested'.
+ //
+ optional<string> machine;
+ optional<string> machine_summary;
+
// Note that the logs are stored as std::string/TEXT which is Ok since
// they are UTF-8 and our database is UTF-8.
//