From 0496be0a444dda8eecae9946e424366eff4c333b Mon Sep 17 00:00:00 2001 From: Patrick Roy Date: Mon, 29 Sep 2025 19:45:12 +0100 Subject: [PATCH] fix(ci): pass --workspace to build test otherwise, on multi-crate workspaces, this test run does precisely nothing. Signed-off-by: Patrick Roy --- .buildkite/test_description.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/test_description.json b/.buildkite/test_description.json index 1708719..9d0155f 100644 --- a/.buildkite/test_description.json +++ b/.buildkite/test_description.json @@ -2,7 +2,7 @@ "tests": [ { "test_name": "build-gnu", - "command": "RUSTFLAGS=\"-D warnings\" cargo build --release", + "command": "RUSTFLAGS=\"-D warnings\" cargo build --release --workspace", "platform": [ "x86_64", "aarch64", @@ -11,7 +11,7 @@ }, { "test_name": "build-musl", - "command": "RUSTFLAGS=\"-D warnings\" cargo build --release --target {target_platform}-unknown-linux-musl", + "command": "RUSTFLAGS=\"-D warnings\" cargo build --release --target {target_platform}-unknown-linux-musl --workspace", "platform": [ "x86_64", "aarch64"