Merge pull request #4326 from tweag/fix-post-build-hook-and-remote-builders
Re-query for the derivation outputs in the post-build-hook
This commit is contained in:
commit
500161b970
|
@ -899,8 +899,10 @@ void DerivationGoal::buildDone()
|
|||
Logger::Fields{worker.store.printStorePath(drvPath)});
|
||||
PushActivity pact(act.id);
|
||||
StorePathSet outputPaths;
|
||||
for (auto i : drv->outputs) {
|
||||
outputPaths.insert(finalOutputs.at(i.first));
|
||||
for (auto& [_, maybeOutPath] :
|
||||
worker.store.queryPartialDerivationOutputMap(drvPath)) {
|
||||
if (maybeOutPath)
|
||||
outputPaths.insert(*maybeOutPath);
|
||||
}
|
||||
std::map<std::string, std::string> hookEnvironment = getEnv();
|
||||
|
||||
|
|
Loading…
Reference in a new issue