Skip to content

Fix clang compilation #23

Fix clang compilation

Fix clang compilation #23

name: Unit tests GCC Linux
on: [push]
jobs:
unit-tests:
name: Build and run
runs-on: ubuntu-24.04
steps:
- name: Checkout the project
uses: actions/checkout@v2
- name: CMake
run: |
cd ./build
CC=/usr/bin/gcc-14 CXX=/usr/bin/g++-14 cmake -G"Unix Makefiles" ./.. -DCMAKE_BUILD_TYPE=Release
- name: Make
run: |
cd ./build
make
- name: Execute unit tests
run: |
cd ./build
./tests/unit_tests/UnitTests --gtest_also_run_disabled_tests