From b6858b232d5b7c2ecbabe1f3696dacdd7e56444d Mon Sep 17 00:00:00 2001 From: Laura Loghin Date: Tue, 11 Jan 2022 15:53:57 +0200 Subject: [PATCH] run `cargo audit` with `--deny warnings` enabled It is better to fail on warnings as well when running `cargo audit` so we can catch problems in time. Fixes https://github.com/rust-vmm/rust-vmm-ci/issues/52. Signed-off-by: Laura Loghin --- .buildkite/test_description.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/test_description.json b/.buildkite/test_description.json index bf85a47..dd27007 100644 --- a/.buildkite/test_description.json +++ b/.buildkite/test_description.json @@ -71,7 +71,7 @@ }, { "test_name": "cargo-audit", - "command": "cargo audit -q" + "command": "cargo audit -q --deny warnings" } ] }