fix(ci): pass --workspace to build test

otherwise, on multi-crate workspaces, this test run does precisely
nothing.

Signed-off-by: Patrick Roy <roypat@amazon.co.uk>
This commit is contained in:
Patrick Roy
2025-09-29 19:45:12 +01:00
committed by Patrick Roy
parent f0de501cab
commit 0496be0a44

View File

@@ -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"