diff options
author | Francois Kritzinger <francois@codesynthesis.com> | 2024-05-23 10:56:13 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2024-06-05 09:12:46 +0200 |
commit | fb02409aea7168048d9afbc374c4db81c7f1aea7 (patch) | |
tree | 9fb9b9f3f03573436a2e2b92379b6fd47143e697 /mod/mod-ci-github.cxx | |
parent | 25bb5af1aebd3e1f6f8a6a18805a94b8e23288bf (diff) |
build_unloaded()
Diffstat (limited to 'mod/mod-ci-github.cxx')
-rw-r--r-- | mod/mod-ci-github.cxx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mod/mod-ci-github.cxx b/mod/mod-ci-github.cxx index 7205e6e..1536e37 100644 --- a/mod/mod-ci-github.cxx +++ b/mod/mod-ci-github.cxx @@ -573,6 +573,26 @@ namespace brep return true; } + function<optional<string> (const tenant_service&)> ci_github:: + build_unloaded (tenant_service&& ts, + const diag_epilogue& log_writer) const noexcept + { + NOTIFICATION_DIAG (log_writer); + + service_data sd; + try + { + sd = service_data (*ts.data); + } + catch (const invalid_argument& e) + { + error << "failed to parse service data: " << e; + return nullptr; + } + + return nullptr; + } + // Build state change notifications (see tenant-services.hxx for // background). Mapping our state transitions to GitHub pose multiple // problems: |