From 3640704b0251e58c0d0165464bf25fc3f038054e Mon Sep 17 00:00:00 2001 From: Viresh Kumar Date: Tue, 4 Apr 2023 15:11:53 +0530 Subject: [PATCH] Cargo audit is missing for arm platforms Lets run it only for x86 for the moment. Signed-off-by: Viresh Kumar --- .buildkite/test_description.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.buildkite/test_description.json b/.buildkite/test_description.json index 301a814..4f9e4fb 100644 --- a/.buildkite/test_description.json +++ b/.buildkite/test_description.json @@ -71,7 +71,10 @@ }, { "test_name": "cargo-audit", - "command": "cargo audit -q --deny warnings" + "command": "cargo audit -q --deny warnings", + "platform": [ + "x86_64" + ] } ] }