diff options
author | eldritch horrors <pennae@lix.systems> | 2024-08-30 19:01:30 +0200 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-08-30 19:01:30 +0200 |
commit | d75df91f74b6819f674f0733143fdf32580af183 (patch) | |
tree | 0b30c89b598b1163ceb310b68ffce1807cbfe858 /src/libstore/build/goal.hh | |
parent | a385c5935aa7cfec4de47cfe5620bca2e0e0e55d (diff) |
libstore: add build result to Goal::Finished
it just makes sense to have it too, rather than just the pass/fail
information we keep so far. once we turn goals into something more
promise-shaped it'll also help detangle the current data flow mess
Change-Id: I915cf04d177cad849ea7a5833215d795326f1946
Diffstat (limited to 'src/libstore/build/goal.hh')
-rw-r--r-- | src/libstore/build/goal.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstore/build/goal.hh b/src/libstore/build/goal.hh index 9d9ab53ca..502ba2a7d 100644 --- a/src/libstore/build/goal.hh +++ b/src/libstore/build/goal.hh @@ -125,6 +125,7 @@ public: }; struct [[nodiscard]] Finished { ExitCode exitCode; + BuildResult result; std::shared_ptr<Error> ex; bool permanentFailure = false; bool timedOut = false; |