forked from lix-project/nix-eval-jobs
commit
0570194d0a
|
@ -173,11 +173,14 @@ static void worker(
|
||||||
auto drvPath = drv->queryDrvPath();
|
auto drvPath = drv->queryDrvPath();
|
||||||
auto localStore = state.store.dynamic_pointer_cast<LocalFSStore>();
|
auto localStore = state.store.dynamic_pointer_cast<LocalFSStore>();
|
||||||
auto storePath = localStore->parseStorePath(drvPath);
|
auto storePath = localStore->parseStorePath(drvPath);
|
||||||
|
auto outputs = drv->queryOutputs(false);
|
||||||
|
|
||||||
reply["name"] = drv->queryName();
|
reply["name"] = drv->queryName();
|
||||||
reply["system"] = drv->querySystem();
|
reply["system"] = drv->querySystem();
|
||||||
reply["drvPath"] = drvPath;
|
reply["drvPath"] = drvPath;
|
||||||
reply["storePath"] = localStore->printStorePath(storePath);
|
for (auto out : outputs){
|
||||||
|
reply["outputs"][out.first] = out.second;
|
||||||
|
}
|
||||||
|
|
||||||
nlohmann::json meta;
|
nlohmann::json meta;
|
||||||
for (auto & name : drv->queryMetaNames()) {
|
for (auto & name : drv->queryMetaNames()) {
|
||||||
|
|
|
@ -28,7 +28,7 @@ def common_test(extra_args: List[str]) -> None:
|
||||||
built_job = results[0]
|
built_job = results[0]
|
||||||
assert built_job["attr"] == "builtJob"
|
assert built_job["attr"] == "builtJob"
|
||||||
assert built_job["name"] == "job1"
|
assert built_job["name"] == "job1"
|
||||||
assert built_job["storePath"].startswith("/nix/store")
|
assert built_job["outputs"]["out"].startswith("/nix/store")
|
||||||
assert built_job["drvPath"].endswith(".drv")
|
assert built_job["drvPath"].endswith(".drv")
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue