From 092713482ee00a0267e84bd59822ace788a5953f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Tue, 14 Nov 2023 08:52:49 -0700 Subject: [PATCH] ci: don't install no_std targets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- .buildkite/custom-tests.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/custom-tests.json b/.buildkite/custom-tests.json index 134c01e..e7de65a 100644 --- a/.buildkite/custom-tests.json +++ b/.buildkite/custom-tests.json @@ -2,7 +2,7 @@ "tests": [ { "test_name": "build-alloc", - "command": "rustup target add {target_platform}-unknown-none && env RUSTFLAGS=\"-D warnings\" cargo build --release --target {target_platform}-unknown-none --no-default-features --features alloc", + "command": "RUSTFLAGS=\"-D warnings\" cargo build --release --target {target_platform}-unknown-none --no-default-features --features alloc", "platform": [ "x86_64", "aarch64"