From 5be3429313eb8c1160be047f51604ab6b3e90b2c Mon Sep 17 00:00:00 2001 From: Patrick Roy Date: Mon, 29 Sep 2025 19:46:02 +0100 Subject: [PATCH] ci: add --all-targets to build test This ensures tests, binaries, benchmarks, examples and libraries are all build-tested, instead of just the default targets. 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 9d0155f..556038f 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 --workspace", + "command": "RUSTFLAGS=\"-D warnings\" cargo build --release --workspace --all-targets", "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 --workspace", + "command": "RUSTFLAGS=\"-D warnings\" cargo build --release --target {target_platform}-unknown-linux-musl --workspace --all-targets", "platform": [ "x86_64", "aarch64"