mirror of
https://github.com/NixOS/nix
synced 2025-07-08 06:53:54 +02:00
DerivationGoal: only retry if output closure incomplete is only problem
(cherry picked from commit bd9eb5c743
)
This commit is contained in:
parent
8803753666
commit
c29fffeaaa
1 changed files with 7 additions and 2 deletions
|
@ -1222,8 +1222,13 @@ void DerivationGoal::outputsSubstituted()
|
|||
|
||||
/* If the substitutes form an incomplete closure, then we should
|
||||
build the dependencies of this derivation, but after that, we
|
||||
can still use the substitutes for this derivation itself. */
|
||||
if (nrIncompleteClosure > 0) retrySubstitution = true;
|
||||
can still use the substitutes for this derivation itself.
|
||||
|
||||
If the nrIncompleteClosure != nrFailed, we have another issue as well.
|
||||
In particular, it may be the case that the hole in the closure is
|
||||
an output of the current derivation, which causes a loop if retried.
|
||||
*/
|
||||
if (nrIncompleteClosure > 0 && nrIncompleteClosure == nrFailed) retrySubstitution = true;
|
||||
|
||||
nrFailed = nrNoSubstituters = nrIncompleteClosure = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue