From a5b91ef4c314906018d56378b7e8658752750beb Mon Sep 17 00:00:00 2001 From: Ryo Onodera Date: Fri, 9 Jul 2021 19:49:07 +0900 Subject: [PATCH] Show grcov version as well (#18549) --- ci/test-checks.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/test-checks.sh b/ci/test-checks.sh index 03ddeea0c4..6f8ff8d9c7 100755 --- a/ci/test-checks.sh +++ b/ci/test-checks.sh @@ -35,8 +35,10 @@ echo --- build environment "$cargo" stable clippy --version --verbose "$cargo" nightly clippy --version --verbose - # audit is done only with stable + # audit is done only with "$cargo stable" "$cargo" stable audit --version + + grcov --version ) export RUST_BACKTRACE=1