Skip to content

Simplify improvements #377

Simplify improvements

Simplify improvements #377

Workflow file for this run

name: coverage
on:
push:
branches: [master, dev]
pull_request:
branches: [master, dev]
defaults:
run:
shell: bash
env:
BUILD_TYPE: Release
jobs:
coverage:
name: Coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install llvm & lcov
run: |
sudo sed -i 's/azure\.//' /etc/apt/sources.list
sudo apt-get update
sudo apt-get install llvm lcov
- name: Configure CMake
working-directory: ${{github.workspace}}
run: cmake -Bbuild -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -Dfintamath_build_tests=ON -Dfintamath_enable_coverage=ON
env:
CC: clang
CXX: clang++
- name: Build
working-directory: ${{github.workspace}}
run: cmake --build build --config ${{env.BUILD_TYPE}}
- name: Collect coverage report
working-directory: ${{github.workspace}}
run: cmake --build build --config ${{env.BUILD_TYPE}} --target fintamath_coverage
- name: Upload coverage report to Coveralls
uses: coverallsapp/github-action@v2
with:
path-to-lcov: ${{github.workspace}}/build/lcov.info