From 550dcd1f0c15cecf5d8b991dce70c638a9e55501 Mon Sep 17 00:00:00 2001 From: Sienna Meridian Satterwhite Date: Wed, 1 Apr 2026 14:37:40 +0100 Subject: [PATCH] chore: add wfe-server crates to workspace, update test contexts Add wfe-server-protos and wfe-server to workspace members. Update StepExecutionContext constructions with log_sink: None in buildkit and containerd test files. --- Cargo.toml | 2 +- wfe-buildkit/tests/integration_test.rs | 3 +++ wfe-containerd/tests/integration.rs | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4e2c4b8..6565948 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace] -members = ["wfe-core", "wfe-sqlite", "wfe-postgres", "wfe-opensearch", "wfe-valkey", "wfe", "wfe-yaml", "wfe-buildkit", "wfe-containerd", "wfe-containerd-protos", "wfe-buildkit-protos", "wfe-rustlang"] +members = ["wfe-core", "wfe-sqlite", "wfe-postgres", "wfe-opensearch", "wfe-valkey", "wfe", "wfe-yaml", "wfe-buildkit", "wfe-containerd", "wfe-containerd-protos", "wfe-buildkit-protos", "wfe-rustlang", "wfe-server-protos", "wfe-server"] resolver = "2" [workspace.package] diff --git a/wfe-buildkit/tests/integration_test.rs b/wfe-buildkit/tests/integration_test.rs index b0a619f..9f1bafa 100644 --- a/wfe-buildkit/tests/integration_test.rs +++ b/wfe-buildkit/tests/integration_test.rs @@ -94,6 +94,7 @@ async fn build_simple_dockerfile_via_grpc() { workflow: &instance, cancellation_token: cancel, host_context: None, + log_sink: None, }; let result = step.run(&ctx).await.expect("build should succeed"); @@ -180,6 +181,7 @@ async fn build_with_build_args() { workflow: &instance, cancellation_token: cancel, host_context: None, + log_sink: None, }; let result = step.run(&ctx).await.expect("build with args should succeed"); @@ -227,6 +229,7 @@ async fn connect_to_unavailable_daemon_returns_error() { workflow: &instance, cancellation_token: cancel, host_context: None, + log_sink: None, }; let err = step.run(&ctx).await; diff --git a/wfe-containerd/tests/integration.rs b/wfe-containerd/tests/integration.rs index 18faca3..fa91b0f 100644 --- a/wfe-containerd/tests/integration.rs +++ b/wfe-containerd/tests/integration.rs @@ -75,6 +75,7 @@ fn make_context<'a>( workflow, cancellation_token: tokio_util::sync::CancellationToken::new(), host_context: None, + log_sink: None, } }