This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
Archive repo #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Unit Tests and Coverage | |
on: [push, pull_request] | |
env: | |
SCCACHE_DIR: ${{ github.workspace }}/.cache/sccache | |
jobs: | |
code-coverage: | |
runs-on: ubuntu-20.04 | |
env: | |
CC: gcc-9 | |
CXX: g++-9 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Cache dependencies | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-deps | |
with: | |
path: .cache/deps | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/ThirdPartyDeps.cmake') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Cache build | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-build | |
with: | |
path: .cache/sccache | |
key: ${{ runner.os }}-build-${{ env.cache-name }} | |
- name: Install sccache | |
run: | | |
curl -SL https://github.com/mozilla/sccache/releases/download/v0.2.15/sccache-v0.2.15-x86_64-unknown-linux-musl.tar.gz | tar xvz --strip-components=1 --wildcards "*/sccache" | |
chmod +x sccache | |
- name: Install Lcov | |
run: sudo apt install lcov ninja-build | |
- name: CMake configure | |
run: cmake -B build -DCMAKE_BUILD_TYPE=Debug -DENABLE_COVERAGE=ON -DENABLE_TESTING=ON | |
- name: CMake build | |
run: cmake --build build --config Debug -j --clean-first | |
- name: CTest | |
working-directory: build/ | |
run: ctest --output-on-failure | |
- name: Generate Coverage Report | |
run: bash ./scripts/run_coverage.sh | |
- name: Upload coverage to Codecov | |
run: bash <(curl -s https://codecov.io/bash) -f coverage.info || echo "Codecov did not collect coverage reports" | |