Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fix-pin-cargo-llvm-cov.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@googleworkspace/cli": patch
---

Add --locked flag to cargo install cargo-llvm-cov in coverage.sh for reproducible installs
2 changes: 1 addition & 1 deletion scripts/coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set -euo pipefail
# Check if cargo-llvm-cov is installed
if ! cargo llvm-cov --version &> /dev/null; then
echo "cargo-llvm-cov is not installed. Installing..."
cargo install cargo-llvm-cov
cargo install --locked --version 0.8.5 cargo-llvm-cov
fi

# Run coverage and generate HTML report
Expand Down
Loading