feat(tvix/build): add GRPCBuildServiceWrapper
This produces a gRPC BuildService server for anything implementing our BuildService trait. Change-Id: I59c690a432b5e1f59209fd67e2718cb8c935adf2 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10628 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: raitobezarius <tvl@lahfa.xyz> Tested-by: BuildkiteCI
This commit is contained in:
parent
4fb4fc263d
commit
c01ec8ee38
2 changed files with 39 additions and 0 deletions
|
|
@ -3,6 +3,10 @@ use std::path::{Path, PathBuf};
|
|||
use itertools::Itertools;
|
||||
use tvix_castore::proto::{NamedNode, ValidateNodeError};
|
||||
|
||||
mod grpc_buildservice_wrapper;
|
||||
|
||||
pub use grpc_buildservice_wrapper::GRPCBuildServiceWrapper;
|
||||
|
||||
tonic::include_proto!("tvix.build.v1");
|
||||
|
||||
#[cfg(feature = "tonic-reflection")]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue