diff options
author | eldritch horrors <pennae@lix.systems> | 2024-07-26 13:28:29 +0200 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-07-30 16:37:13 +0000 |
commit | 97a389b0bee7baf2d445121afa6ec84bef3a4bd7 (patch) | |
tree | 058ea8b5244ffb68cc189e1a61b6a5e4ff9f7e7e /src/libstore/build/entry-points.cc | |
parent | 53bfcf2586dea1a43c4d977edc3c78b1538761a7 (diff) |
libstore: move Goal::getBuildResult to BuildResult
there are no other uses for this yet, but asking for just a subset of
outputs does seem at least somewhat useful to have as a generic thing
Change-Id: I30ff5055a666c351b1b086b8d05b9d7c9fb1c77a
Diffstat (limited to 'src/libstore/build/entry-points.cc')
-rw-r--r-- | src/libstore/build/entry-points.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/libstore/build/entry-points.cc b/src/libstore/build/entry-points.cc index 67236bb39..c6955600e 100644 --- a/src/libstore/build/entry-points.cc +++ b/src/libstore/build/entry-points.cc @@ -62,10 +62,7 @@ std::vector<KeyedBuildResult> Store::buildPathsWithResults( std::vector<KeyedBuildResult> results; for (auto & [req, goalPtr] : state) - results.emplace_back(KeyedBuildResult { - goalPtr->getBuildResult(req), - /* .path = */ req, - }); + results.emplace_back(goalPtr->buildResult.restrictTo(req)); return results; } @@ -78,7 +75,7 @@ BuildResult Store::buildDerivation(const StorePath & drvPath, const BasicDerivat try { worker.run(Goals{goal}); - return goal->getBuildResult(DerivedPath::Built { + return goal->buildResult.restrictTo(DerivedPath::Built { .drvPath = makeConstantStorePathRef(drvPath), .outputs = OutputsSpec::All {}, }); |