Skip to content

Commit

Permalink
Use gcovr from apt instead of pip #34
Browse files Browse the repository at this point in the history
Signed-off-by: marifunf <[email protected]>
  • Loading branch information
marifunf committed Jul 22, 2022
1 parent 9c4397d commit 647849e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ jobs:
java-version: 11

- name: Install gcovr
run: sudo pip install gcovr
run: |
sudo apt-get update -y
sudo apt-get install -y gcovr
- name: Install Sonar wrapper
working-directory: ${{ runner.workspace }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/qa_pr_cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ jobs:
java-version: 11

- name: Install gcovr
run: sudo pip install gcovr
run: |
sudo apt-get update -y
sudo apt-get install -y gcovr
- name: Install Sonar wrapper
working-directory: ${{ runner.workspace }}
Expand Down

0 comments on commit 647849e

Please sign in to comment.