From 2072ffe5072da1be6a586cd8a92141aed027a942 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Fri, 11 Aug 2023 20:04:35 +0200 Subject: [PATCH] fix(ci): with build workspace instead Signed-off-by: kjuulh --- ci/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/src/main.rs b/ci/src/main.rs index 0e12142..6df4cbb 100644 --- a/ci/src/main.rs +++ b/ci/src/main.rs @@ -331,7 +331,7 @@ pub async fn base_rust_image( .with_exec(vec!["apt", "install", "-y", "jq"]); let target_cache = client.cache_volume(format!("rust_target_{}", profile)); - let mut build_options = vec!["cargo", "build", "--target", rust_target]; + let mut build_options = vec!["cargo", "build", "--target", rust_target, "--workspace"]; if profile == "release" { build_options.push("--release");