Skip to content

Commit

Permalink
Stop rebuilding Oak Containers SDK (#4665)
Browse files Browse the repository at this point in the history
The change detection logic was not working correctly because of the
proto paths, and this crate (and its dependants) were constantly rebuilt
instead of being cached.
  • Loading branch information
tiziano88 authored Jan 17, 2024
1 parent 0acf3f6 commit ac6709f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions oak_containers_sdk/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
// Generate gRPC code for connecting to the Orchestrator.
generate_grpc_code(
&[
"oak_containers/proto/interfaces.proto",
"oak_crypto/proto/v1/crypto.proto",
"proto/session/messages.proto",
"proto/containers/orchestrator_crypto.proto",
"../oak_containers/proto/interfaces.proto",
"../oak_crypto/proto/v1/crypto.proto",
"../proto/session/messages.proto",
"../proto/containers/orchestrator_crypto.proto",
],
"..",
CodegenOptions {
Expand Down

0 comments on commit ac6709f

Please sign in to comment.