From 71e1953b254bced0c4b36c3347fcdfa58b7dc2fa Mon Sep 17 00:00:00 2001 From: Andreas Fackler Date: Tue, 23 Jul 2019 11:09:30 +0200 Subject: [PATCH] Temporarily disable cargo audit. --- ci.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ci.sh b/ci.sh index 48c8ea4..6110a40 100755 --- a/ci.sh +++ b/ci.sh @@ -17,11 +17,13 @@ cargo fmt -- --check cargo test --features=use-insecure-test-only-mock-crypto --release cargo doc cargo deadlinks --dir target/doc/hbbft/ -cargo audit +# TODO: Re-enable once https://github.com/poanetwork/hbbft/issues/415 is fixed. +# cargo audit cd hbbft_testing cargo clippy --all-targets -- --deny clippy::all cargo fmt -- --check cargo test --release -cargo audit +# TODO: Re-enable once https://github.com/poanetwork/hbbft/issues/415 is fixed. +# cargo audit cd ..