Skip to content

Commit

Permalink
Merge pull request #35 from powsybl/mfu/issue3
Browse files Browse the repository at this point in the history
Use gcovr from apt instead of pip #34
  • Loading branch information
marifunf authored Jul 22, 2022
2 parents 9c4397d + 647849e commit f3005b6
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 f3005b6

Please sign in to comment.