Skip to content
Draft
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
4 changes: 3 additions & 1 deletion .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,9 @@ jobs:
- name: Install Codecov
if: matrix.os == 'ubuntu-18.04'
run: |
sudo pip install codecov
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
echo "${pwd}" >> $GITHUB_PATH
- name: Install Qt (Linux|MacOS)
if: (matrix.os == 'ubuntu-18.04') || (matrix.os == 'macos-latest')
uses: jurplel/install-qt-action@v2
Expand Down
2 changes: 1 addition & 1 deletion tools/testing/test_all.bat
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ do
if [ $RunCodeCoverage == "true" ]; then
find ./libraries -type f -name "*.cpp" -exec gcov {} \; &> /dev/null
# Hide codecov output since it corrupts the log too much
codecov &> /dev/null
./codecov
fi

done
Expand Down