Skip to content

Update GitHub Actions Images #36

Update GitHub Actions Images

Update GitHub Actions Images #36

name: Code Coverage
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-ubuntu:
strategy:
matrix:
include:
# Ubuntu 22.04 + gcc-13
- name: "Ubuntu 22.04 + gcc-13"
os: ubuntu-22.04
compiler: gcc
version: "13"
runs-on: ${{ matrix.os }}
name: 🧪 Code Coverage - Codecov
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Install packages
run: sudo apt-get install -yq lcov
- name: Configure Compiler
run: |
if [ "${{ matrix.compiler }}" = "gcc" ]; then
echo "CC=gcc-${{ matrix.version }}" >> $GITHUB_ENV
echo "CXX=g++-${{ matrix.version }}" >> $GITHUB_ENV
else
echo "CC=clang-${{ matrix.version }}" >> $GITHUB_ENV
echo "CXX=clang++-${{ matrix.version }}" >> $GITHUB_ENV
fi
- name: Configure Build
run: mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_COVERAGE=ON ..
- name: Build
run: cd build && make
- name: Run Unit Test
run: /home/runner/work/CubbyFlow/CubbyFlow/build/bin/UnitTests
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)