From ed9c97ca328ac27b79cb67fb31e4c96e59cde964 Mon Sep 17 00:00:00 2001 From: Sienna Meridian Satterwhite Date: Thu, 26 Mar 2026 23:37:24 +0000 Subject: [PATCH] fix: add host_context field to container executor test contexts --- wfe-buildkit/tests/integration_test.rs | 3 +++ wfe-containerd/tests/integration.rs | 1 + 2 files changed, 4 insertions(+) diff --git a/wfe-buildkit/tests/integration_test.rs b/wfe-buildkit/tests/integration_test.rs index 62990c0..b0a619f 100644 --- a/wfe-buildkit/tests/integration_test.rs +++ b/wfe-buildkit/tests/integration_test.rs @@ -93,6 +93,7 @@ async fn build_simple_dockerfile_via_grpc() { step: &ws, workflow: &instance, cancellation_token: cancel, + host_context: None, }; let result = step.run(&ctx).await.expect("build should succeed"); @@ -178,6 +179,7 @@ async fn build_with_build_args() { step: &ws, workflow: &instance, cancellation_token: cancel, + host_context: None, }; let result = step.run(&ctx).await.expect("build with args should succeed"); @@ -224,6 +226,7 @@ async fn connect_to_unavailable_daemon_returns_error() { step: &ws, workflow: &instance, cancellation_token: cancel, + host_context: None, }; let err = step.run(&ctx).await; diff --git a/wfe-containerd/tests/integration.rs b/wfe-containerd/tests/integration.rs index a9ef539..032e6ea 100644 --- a/wfe-containerd/tests/integration.rs +++ b/wfe-containerd/tests/integration.rs @@ -66,6 +66,7 @@ fn make_context<'a>( step, workflow, cancellation_token: tokio_util::sync::CancellationToken::new(), + host_context: None, } }