aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancois Kritzinger <francois@codesynthesis.com>2024-04-24 10:51:23 +0200
committerFrancois Kritzinger <francois@codesynthesis.com>2024-04-24 15:37:42 +0200
commit79e0091c4188fed780149dee1323d162bbb1470f (patch)
treee921133d79bde38995de37eb087e55310237b017
parent0fbd2717da3b7e86f98c60385b07af07763703e8 (diff)
Re-implement build_building()
-rw-r--r--mod/mod-ci-github.cxx72
1 files changed, 58 insertions, 14 deletions
diff --git a/mod/mod-ci-github.cxx b/mod/mod-ci-github.cxx
index 9a273f0..21c537d 100644
--- a/mod/mod-ci-github.cxx
+++ b/mod/mod-ci-github.cxx
@@ -612,8 +612,6 @@ namespace brep
return nullptr;
}
- check_run cr; // Updated check run.
-
// Get a new installation access token if the current one has expired.
//
const gh_installation_access_token* iat (nullptr);
@@ -633,24 +631,58 @@ namespace brep
else
iat = &sd.installation_access;
+ check_run cr; // Updated check run.
+
if (iat != nullptr)
{
string bid (gh_check_run_name (b)); // Full Build ID.
- // Stored check run.
- //
- const check_run* scr (sd.find_check_run (bid));
+ check_run* scr (sd.find_check_run (bid)); // Stored check run.
- if (scr != nullptr && scr->node_id)
+ // Update the check run if it exists on GitHub and the queued
+ // notification has run and updated the service data, otherwise do
+ // nothing.
+ //
+ if (scr != nullptr && scr->node_id && scr->state == build_state::queued)
{
- // The check run exists on GitHub and in the persisted service data.
- //
+ cr = move (*scr);
+ cr.state_synced = false;
+
+ if (gq_update_check_run (cr,
+ iat->token,
+ sd.repository_id,
+ *cr.node_id,
+ build_state::building,
+ error))
+ {
+ // Do nothing further if the state was already built on GitHub.
+ //
+ if (cr.state == build_state::built)
+ {
+ warn << "check run " << bid << ": already in built state on GitHub";
+
+ return nullptr;
+ }
+
+ assert (cr.state == build_state::building);
+
+ l3 ([&]{trace << "updated check_run { " << cr << " }";});
+ }
}
- else // (src == nullptr || !scr->node_id)
+ else
{
- // No state has been persisted, or one or both of the other
- // notifications were unable to create the check run on GitHub.
- //
+ if (scr == nullptr)
+ {
+ warn << "check run " << bid << ": out of order building "
+ << "notification (no service data)";
+ }
+ else if (scr->state != build_state::queued)
+ {
+ warn << "check run " << bid << ": out of order building "
+ << "notification; existing state: " << scr->state_string ();
+ }
+
+ return nullptr;
}
}
@@ -676,12 +708,24 @@ namespace brep
if (iat)
sd.installation_access = *iat;
+ // Update the check run if it is in the queued state.
+ //
if (check_run* scr = sd.find_check_run (cr.build_id))
{
+ if (scr->state == build_state::queued)
+ *scr = cr;
+ else
+ {
+ assert (scr->state == build_state::built);
+
+ warn << "check run " << cr.build_id << ": out of order building "
+ << "notification service data update; existing state: "
+ << scr->state_string ();
+ }
}
else
- {
- }
+ error << "check run " << cr.build_id
+ << " has disappeared since build_building() ran";
return sd.json ();
};