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, } }