๐ Compile tests with libc++ #145
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: Tests | |
on: [push, pull_request, workflow_dispatch] | |
env: | |
BUILD_TYPE: RelWithDebInfo | |
jobs: | |
build-test: | |
name: Tests (${{ matrix.compiler }} C++${{ matrix.std }} Coverage-${{ matrix.coverage }}) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: [ GCC, Clang ] | |
coverage: [ OFF, ON ] | |
std: [20, 23] | |
exclude: | |
- coverage: ON | |
include: | |
- compiler: Clang | |
- compiler: GCC | |
version: latest | |
- std: 20 | |
test_with_cxx23: OFF | |
- std: 23 | |
test_with_cxx23: ON | |
- compiler: Clang | |
std: 23 | |
test_with_cxx23: ON | |
coverage: ON | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Clang | |
if: matrix.compiler == 'Clang' | |
uses: egor-tensin/setup-clang@v1 | |
with: | |
version: ${{ vars.CLANG_VERSION }} | |
cc: 1 | |
- name: Use LLVM linker | |
if: matrix.compiler == 'Clang' | |
env: | |
CLANG_VERSION: ${{ vars.CLANG_VERSION }} | |
run: | | |
sudo apt-get install -y lld-$CLANG_VERSION libclang-rt-$CLANG_VERSION-dev | |
sudo ln -f -s /usr/bin/ld.lld-$CLANG_VERSION /usr/local/bin/ld | |
- name: Link coverage tools | |
if: matrix.compiler == 'Clang' && matrix.coverage == 'ON' | |
env: | |
CLANG_VERSION: ${{ vars.CLANG_VERSION }} | |
run: | | |
sudo ln -f -s /usr/bin/llvm-profdata-$CLANG_VERSION /usr/local/bin/llvm-profdata | |
sudo ln -f -s /usr/bin/llvm-cov-$CLANG_VERSION /usr/local/bin/llvm-cov | |
- name: Set up GCC | |
if: matrix.compiler == 'GCC' | |
uses: egor-tensin/setup-gcc@v1 | |
with: | |
version: ${{ matrix.version }} | |
cc: 1 | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCODE_COVERAGE=${{ matrix.coverage }} -DTEST_WITH_CXX23=${{ matrix.test_with_cxx23 }} | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build --parallel --config ${{env.BUILD_TYPE}} | |
- name: Test | |
working-directory: ${{github.workspace}}/build | |
# Coverage processing seems to be broken when run through ctest | |
# run: ctest -C ${{env.BUILD_TYPE}} | |
run: ./mays_tests --colour-mode ansi | |
- name: Process coverage data | |
if: matrix.coverage == 'ON' | |
working-directory: ${{github.workspace}}/build | |
run: | | |
llvm-profdata merge -sparse default.profraw -o coverage.profdata | |
llvm-cov show ./mays_tests -instr-profile=coverage.profdata > coverage.txt | |
- name: Upload coverage data to Codecov | |
uses: codecov/codecov-action@v2 | |
if: matrix.coverage == 'ON' | |
with: | |
files: ${{github.workspace}}/build/coverage.txt |