mirror of
https://github.com/NixOS/nix.git
synced 2025-11-09 12:06:01 +01:00
Cleanup Derivation*Goal names
This commit is contained in:
parent
682cf0b266
commit
ba7bbcd1da
3 changed files with 3 additions and 5 deletions
|
|
@ -42,7 +42,7 @@ DerivationBuildingGoal::DerivationBuildingGoal(
|
||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
|
|
||||||
name = fmt("building of '%s' from in-memory derivation", worker.store.printStorePath(drvPath));
|
name = fmt("building derivation '%s'", worker.store.printStorePath(drvPath));
|
||||||
trace("created");
|
trace("created");
|
||||||
|
|
||||||
/* Prevent the .chroot directory from being
|
/* Prevent the .chroot directory from being
|
||||||
|
|
|
||||||
|
|
@ -43,9 +43,7 @@ DerivationGoal::DerivationGoal(
|
||||||
{
|
{
|
||||||
this->drv = std::make_unique<Derivation>(drv);
|
this->drv = std::make_unique<Derivation>(drv);
|
||||||
|
|
||||||
name =
|
name = fmt("getting output '%s' from derivation '%s'", wantedOutput, worker.store.printStorePath(drvPath));
|
||||||
fmt("building of '%s' from in-memory derivation",
|
|
||||||
DerivedPath::Built{makeConstantStorePathRef(drvPath), drv.outputNames()}.to_string(worker.store));
|
|
||||||
trace("created");
|
trace("created");
|
||||||
|
|
||||||
mcExpectedBuilds = std::make_unique<MaintainCount<uint64_t>>(worker.expectedBuilds);
|
mcExpectedBuilds = std::make_unique<MaintainCount<uint64_t>>(worker.expectedBuilds);
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ DerivationTrampolineGoal::DerivationTrampolineGoal(
|
||||||
void DerivationTrampolineGoal::commonInit()
|
void DerivationTrampolineGoal::commonInit()
|
||||||
{
|
{
|
||||||
name =
|
name =
|
||||||
fmt("outer obtaining drv from '%s' and then building outputs %s",
|
fmt("obtaining derivation from '%s' and then building outputs %s",
|
||||||
drvReq->to_string(worker.store),
|
drvReq->to_string(worker.store),
|
||||||
std::visit(
|
std::visit(
|
||||||
overloaded{
|
overloaded{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue