Skip to content
Merged
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
10 changes: 9 additions & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,16 @@ jobs:
- name: Install Tools
run: |
sudo rm /usr/lib/python3.*/EXTERNALLY-MANAGED
sudo apt-get install lcov
pip install gcovr
#
# Install lcov dependencies
sudo apt-get install libcapture-tiny-perl libdatetime-perl
# Install lcov from source
git clone https://github.com/linux-test-project/lcov.git
cd lcov
git checkout v2.3.2
sudo make install
cd ..

- name: Check Tools
run: |
Expand Down