From 3c4288280f385976b0a97386e448866dd18e1e33 Mon Sep 17 00:00:00 2001 From: Lina Butler Date: Sat, 26 Aug 2023 06:02:34 -0400 Subject: [PATCH] ci: Pin `grcov` and its dependencies. This ensures that we'll install a known working version of `grcov`, and use its packaged `Cargo.lock` file to avoid issues with breaking changes in downstream dependencies. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c27476563..6082cd2bf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -53,7 +53,7 @@ commands: - run: name: Install grcov command: | - cargo install grcov + cargo install --locked grcov@0.8.19 # Run in a different shell to source $BASH_ENV - run: | grcov --version