aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mod/mod-ci-github-gq.cxx60
-rw-r--r--mod/mod-ci-github-gq.hxx33
-rw-r--r--mod/mod-ci-github.cxx26
3 files changed, 85 insertions, 34 deletions
diff --git a/mod/mod-ci-github-gq.cxx b/mod/mod-ci-github-gq.cxx
index 37d944c..7abd709 100644
--- a/mod/mod-ci-github-gq.cxx
+++ b/mod/mod-ci-github-gq.cxx
@@ -511,9 +511,13 @@ namespace brep
const string& ni, // Node ID.
const string& st, // Check run status.
optional<timestamp> sa, // Started at.
- optional<gq_built_result> br)
+ const string& ti, // Output title.
+ const string& su, // Output summary.
+ optional<string> co = nullopt) // Conclusion.
{
- assert (st != "COMPLETED" || br);
+ // Ensure we have conclusion if the status is completed.
+ //
+ assert (st != "COMPLETED" || co);
ostringstream os;
@@ -538,15 +542,13 @@ namespace brep
": " + e.what ());
}
}
- if (br)
- {
- os << '\n';
- os << " conclusion: " << gq_enum (br->conclusion) << '\n'
- << " output: {" << '\n'
- << " title: " << gq_str (br->title) << '\n'
- << " summary: " << gq_str (br->summary) << '\n'
- << " }";
- }
+ os << '\n';
+ if (co)
+ os << " conclusion: " << gq_enum (*co) << '\n';
+ os << " output: {" << '\n'
+ << " title: " << gq_str (ti) << '\n'
+ << " summary: " << gq_str (su) << '\n'
+ << " }";
os << "})" << '\n'
// Specify the selection set (fields to be returned). Note that we
// rename `id` to `node_id` (using a field alias) for consistency with
@@ -654,11 +656,11 @@ namespace brep
const string& rid,
const string& nid,
build_state st,
- optional<gq_built_result> br)
+ string ti, string su)
{
- // Must have a result if state is built.
+ // State cannot be built without a conclusion.
//
- assert (st != build_state::built || br);
+ assert (st != build_state::built && !ti.empty () && !su.empty ());
// Set `startedAt` to current time if updating to building.
//
@@ -673,7 +675,8 @@ namespace brep
nid,
gh_to_status (st),
sa,
- move (br))));
+ move (ti), move (su),
+ nullopt /* conclusion */)));
vector<check_run> crs {move (cr)};
crs[0].state = st;
@@ -685,6 +688,33 @@ namespace brep
return r;
}
+ bool
+ gq_update_check_run (const basic_mark& error,
+ check_run& cr,
+ const string& iat,
+ const string& rid,
+ const string& nid,
+ gq_built_result br)
+ {
+ string rq (
+ gq_serialize_request (
+ gq_mutation_update_check_run (rid,
+ nid,
+ gh_to_status (build_state::built),
+ nullopt /* startedAt */,
+ move (br.title), move (br.summary),
+ move (br.conclusion))));
+
+ vector<check_run> crs {move (cr)};
+ crs[0].state = build_state::built;
+
+ bool r (gq_mutate_check_runs (error, crs, iat, move (rq)));
+
+ cr = move (crs[0]);
+
+ return r;
+ }
+
// Serialize a GraphQL query that fetches a pull request from GitHub.
//
// Throw invalid_argument if the node id is not a valid GraphQL string.
diff --git a/mod/mod-ci-github-gq.hxx b/mod/mod-ci-github-gq.hxx
index 0fc3817..269b881 100644
--- a/mod/mod-ci-github-gq.hxx
+++ b/mod/mod-ci-github-gq.hxx
@@ -82,28 +82,45 @@ namespace brep
const optional<string>& details_url,
gq_built_result);
- // Update a check run on GitHub. Update `cr` with the new data (state and
- // state_synced). Return false and issue diagnostics if the request failed.
+ // Update a check run on GitHub to the queued or building state. Note that
+ // the state cannot be built because in that case a conclusion is required.
+ //
+ // Update `cr` with the new data (state and state_synced). Return false and
+ // issue diagnostics if the request failed.
//
// Throw invalid_argument if the passed data is invalid, missing, or
// inconsistent.
//
+ // Title and summary are required and cannot be empty.
+ //
+ // @@ TMP Neither this function nor the gq_create_check_run() equivalent are
+ // ever called with queued (only building) so should we hardcode
+ // build_state::building (and remove the build_state argument)?
+ //
+ bool
+ gq_update_check_run (const basic_mark& error,
+ check_run& cr,
+ const string& installation_access_token,
+ const string& repository_id,
+ const string& node_id,
+ build_state,
+ string title,
+ string summary);
+
+ // As above but update a check run to the built state (which requires a
+ // conclusion).
+ //
// Note that GitHub allows any state transitions except from built (but
// built to built is allowed). The latter case is signalled by setting the
// check_run state_synced member to false and the state member to built.
//
- // The gq_built_result is required if the build_state is built because
- // GitHub does not allow a check run status of `completed` without at least
- // a conclusion.
- //
bool
gq_update_check_run (const basic_mark& error,
check_run& cr,
const string& installation_access_token,
const string& repository_id,
const string& node_id,
- build_state,
- optional<gq_built_result> = nullopt);
+ gq_built_result);
// Fetch pre-check information for a pull request from GitHub. This
// information is used to decide whether or not to CI the PR and is
diff --git a/mod/mod-ci-github.cxx b/mod/mod-ci-github.cxx
index b995256..325774c 100644
--- a/mod/mod-ci-github.cxx
+++ b/mod/mod-ci-github.cxx
@@ -580,9 +580,13 @@ namespace brep
static string conclusion_check_run_name ("CONCLUSION");
static check_run::description_type conclusion_check_run_building_description {
- "\U000026AA IN PROGRESS", // "Medium white" circle.
+ "\U0001F7E1 IN PROGRESS", // Yellow circle.
"Waiting for all builds to complete"};
+ static check_run::description_type check_run_queued_description {
+ "\U000026AA QUEUED", // "Medium white" circle.
+ "Waiting for build to start"};
+
bool ci_github::
handle_branch_push (gh_push_event ps, bool warning_success)
{
@@ -1329,7 +1333,7 @@ namespace brep
if (gq_update_check_run (error, bcr, iat->token,
repo_node_id, cr.check_run.node_id,
- build_state::built, br))
+ br))
{
l3 ([&]{trace << "updated check_run { " << bcr << " }";});
}
@@ -1342,7 +1346,7 @@ namespace brep
if (gq_update_check_run (error, ccr, iat->token,
repo_node_id, *sd.conclusion_node_id,
- build_state::built, move (br)))
+ move (br)))
{
l3 ([&]{trace << "updated conclusion check_run { " << ccr << " }";});
}
@@ -1390,7 +1394,7 @@ namespace brep
//
if (gq_update_check_run (error, ccr, iat->token,
repo_node_id, *sd.conclusion_node_id,
- build_state::built, move (br)))
+ move (br)))
{
l3 ([&]{trace << "updated conclusion check_run { " << ccr << " }";});
}
@@ -1467,6 +1471,7 @@ namespace brep
bcr.state = build_state::queued;
bcr.state_synced = false;
bcr.details_url = cr.check_run.details_url;
+ bcr.description = check_run_queued_description;
ccr.state = build_state::building;
ccr.state_synced = false;
@@ -1622,7 +1627,7 @@ namespace brep
//
if (gq_update_check_run (error, bcr, iat->token,
repo_node_id, *bcr.node_id,
- build_state::built, br))
+ br))
{
l3 ([&]{trace << "updated check_run { " << bcr << " }";});
}
@@ -1638,7 +1643,7 @@ namespace brep
//
if (gq_update_check_run (error, ccr, iat->token,
repo_node_id, *ccr.node_id,
- build_state::built, move (br)))
+ move (br)))
{
l3 ([&]{trace << "updated conclusion check_run { " << ccr << " }";});
}
@@ -1991,7 +1996,6 @@ namespace brep
iat->token,
sd.repository_node_id,
node_id,
- build_state::built,
move (br)))
{
assert (cr.state == build_state::built);
@@ -2317,7 +2321,7 @@ namespace brep
false /* state_synced */,
nullopt /* status */,
details_url (b),
- nullopt /* description */});
+ check_run_queued_description});
}
}
@@ -2521,7 +2525,9 @@ namespace brep
iat->token,
sd.repository_node_id,
*cr->node_id,
- build_state::building))
+ build_state::building,
+ "\U0001F7E1 IN PROGRESS", // Yellow circle
+ "Waiting for build to complete"))
{
// Do nothing further if the state was already built on GitHub (note
// that this is based on the above-mentioned special GitHub semantics
@@ -2808,7 +2814,6 @@ namespace brep
iat->token,
sd.repository_node_id,
*cr.node_id,
- build_state::built,
move (br)))
{
assert (cr.state == build_state::built);
@@ -3089,7 +3094,6 @@ namespace brep
iat->token,
sd.repository_node_id,
*sd.conclusion_node_id,
- build_state::built,
move (br)))
{
assert (cr.state == build_state::built);