Workflow wip...

This commit is contained in:
Steffen Schuemann 2021-07-04 15:57:31 +02:00
parent 891be4cdd7
commit 162416fe2c

View File

@ -71,9 +71,6 @@ jobs:
shell: bash shell: bash
run: | run: |
sudo apt install ${{ matrix.config.packages }} sudo apt install ${{ matrix.config.packages }}
if [[ "${{ matrix.config.build_type }}" == "Debug" ]]; then
sudo gem install coveralls-lcov
fi
- name: Install dependencies on windows - name: Install dependencies on windows
if: startsWith(matrix.config.os, 'windows') if: startsWith(matrix.config.os, 'windows')
@ -118,6 +115,7 @@ jobs:
sed -i 's|SF:/.*/filesystem/|SF:../|g' coverage.info sed -i 's|SF:/.*/filesystem/|SF:../|g' coverage.info
- name: Upload coverage info - name: Upload coverage info
if: startsWith(matrix.config.build_type, 'Debug')
uses: coverallsapp/github-action@master uses: coverallsapp/github-action@master
with: with:
path-to-lcov: ./build/coverage.info path-to-lcov: ./build/coverage.info