diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 65f255f4340..d0b358dda3b 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -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 diff --git a/tools/testing/test_all.bat b/tools/testing/test_all.bat index 96f9c28a23a..76487fa72cf 100755 --- a/tools/testing/test_all.bat +++ b/tools/testing/test_all.bat @@ -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