Jan Breuer
2023-01-16 a6b4eb9e36ea571b5ece992dc6304e2c876c0c9f
action: update lcov
1个文件已修改
9 ■■■■■ 已修改文件
.github/workflows/ubuntu.yml 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
.github/workflows/ubuntu.yml
@@ -41,14 +41,13 @@
      run: make clean all test
    
    - name: lcov_capture
      run: lcov --capture --directory . --output-file coverage.info
      run: lcov --capture --directory libscpi/ --output-file lcov.info
    - name: lcov_cleanup
      run: lcov --remove coverage.info 'test/*' --output-file coverage.info
      run: lcov --remove lcov.info '*/test/*' --output-file lcov.info
    - name: Coveralls
      uses: coverallsapp/github-action@master
      with:
        github-token: ${{ secrets.GITHUB_TOKEN }}
        base-path: libscpi/
        path-to-lcov: coverage.info
        path-to-lcov: ./lcov.info