From 323499a99be87f605c00dd8b05da98132cef764d Mon Sep 17 00:00:00 2001 From: Stefano Garzarella Date: Fri, 1 Dec 2023 16:14:49 +0100 Subject: [PATCH] staging/tests: make the build blocking for CI In some cases, we don't realize that changes can break crates in `staging` because CI is not blocking. Let's make sure that at least the build of crates in `staging` is blocking, while the rest (clippy, coverage, musl, etc.) remain non-blocking for CI. Suggested-by: Erik Schilling Signed-off-by: Stefano Garzarella --- .buildkite/staging-tests.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/staging-tests.json b/.buildkite/staging-tests.json index 5391ea0..dcc8d42 100644 --- a/.buildkite/staging-tests.json +++ b/.buildkite/staging-tests.json @@ -3,7 +3,7 @@ { "test_name": "staging: build-gnu", "command": "cd staging && RUSTFLAGS=\"-D warnings\" cargo build --release", - "soft_fail": "true", + "soft_fail": "false", "platform": [ "x86_64", "aarch64"