fix(tvix): Don't call assertStorePath on BasicDerivation.builder
Upstream doesn't, and for good reason - this might not be a store path, for example if it's /bin/sh Fixes: b/73 Change-Id: If9aa96de2cd8ab941c098a9f122b8b302a92ec38 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2175 Reviewed-by: kanepyork <rikingcoding@gmail.com> Tested-by: BuildkiteCI
This commit is contained in:
parent
c885bd0274
commit
1d22874ab2
3 changed files with 5 additions and 9 deletions
|
|
@ -674,15 +674,13 @@ class WorkerServiceImpl final : public WorkerService::Service {
|
|||
}
|
||||
|
||||
Status BuildDerivation(
|
||||
grpc::ServerContext* context,
|
||||
const nix::proto::BuildDerivationRequest* request,
|
||||
grpc::ServerContext*, const nix::proto::BuildDerivationRequest* request,
|
||||
grpc::ServerWriter<nix::proto::BuildEvent>* writer) override {
|
||||
return HandleExceptions(
|
||||
[&]() -> Status {
|
||||
auto drv_path = request->drv_path().path();
|
||||
ASSERT_INPUT_STORE_PATH(drv_path);
|
||||
auto drv =
|
||||
BasicDerivation::from_proto(&request->derivation(), *store_);
|
||||
auto drv = BasicDerivation::from_proto(&request->derivation());
|
||||
|
||||
auto build_mode = nix::BuildModeFrom(request->build_mode());
|
||||
if (!build_mode) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue