mirror of
https://codeberg.org/Toasterson/solstice-ci.git
synced 2026-04-10 21:30:41 +00:00
9 lines
300 B
Rust
9 lines
300 B
Rust
|
|
fn main() {
|
||
|
|
// Compile gRPC protobufs for Runner <-> Orchestrator
|
||
|
|
println!("cargo:rerun-if-changed=proto/runner.proto");
|
||
|
|
tonic_build::configure()
|
||
|
|
.build_server(true)
|
||
|
|
.compile_protos(&["proto/runner.proto"], &["proto"])
|
||
|
|
.expect("failed to compile runner proto");
|
||
|
|
}
|