Skip to content

Commit

Permalink
ci: fix the compilation of grcov
Browse files Browse the repository at this point in the history
  • Loading branch information
yangby-cryptape committed Apr 11, 2024
1 parent d598560 commit 773d17d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
override: true
components: llvm-tools-preview
- name: Install Grcov
run: grcov --version || cargo install grcov
run: grcov --version || cargo install --locked grcov
- name: Generate Code Coverage Report of Unit Tests
run: |
make coverage-run-unittests
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ coverage-clean:

coverage-install-tools:
rustup component add llvm-tools-preview
grcov --version || cargo install grcov
grcov --version || cargo install --locked grcov

coverage-run-unittests:
mkdir -p "${COVERAGE_PROFRAW_DIR}"
Expand Down

0 comments on commit 773d17d

Please sign in to comment.