CI #570
This file contains hidden or 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: | |
| branches: | |
| - master | |
| - develop | |
| pull_request: | |
| branches: | |
| - master | |
| - develop | |
| concurrency: | |
| group: Tests-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| Ubuntu: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| compiler: [gcc-10] | |
| build_type: ['Debug'] | |
| multithreaded: ['ON', 'OFF'] | |
| fail-fast: false | |
| env: | |
| MAKEFLAGS: "-j2" | |
| CTEST_PARALLEL_LEVEL: 2 | |
| steps: | |
| - name: Checkout repository and submodules | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Setup Cpp (C++ / C) | |
| uses: aminya/setup-cpp@v1 | |
| with: | |
| compiler: ${{ matrix.compiler }} | |
| cmake: true | |
| - name: Install dependencies | |
| run: >- | |
| sudo apt-get update && sudo apt-get install -y | |
| lcov | |
| libomp-dev | |
| libgl1-mesa-dev | |
| libsdl2-dev | |
| libglfw3-dev | |
| libopenal-dev | |
| libvulkan-dev | |
| libsuitesparse-dev | |
| libmetis-dev | |
| libboost1.74-all-dev | |
| - name: Configure CMake | |
| run: > | |
| cmake | |
| -B ${{github.workspace}}/build | |
| -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} | |
| -DRODIN_BUILD_DOC=OFF | |
| -DRODIN_USE_MCSS=OFF | |
| -DRODIN_BUILD_EXAMPLES=OFF | |
| -DRODIN_BUILD_BENCHMARKS=OFF | |
| -DRODIN_BUILD_SRC=ON | |
| -DRODIN_BUILD_UNIT_TESTS=ON | |
| -DRODIN_BUILD_MANUFACTURED_TESTS=ON | |
| -DRODIN_LCOV_FLAGS="--ignore-errors gcov,gcov --ignore-errors mismatch --ignore-errors unused" | |
| -DRODIN_CODE_COVERAGE=ON | |
| -DRODIN_MULTITHREADED=${{ matrix.multithreaded }} | |
| - name: Build | |
| run: cmake --build ${{github.workspace}}/build | |
| - name: Run tests | |
| run: ctest --test-dir ${{github.workspace}}/build/tests | |
| - name: Make coverage | |
| run: cmake --build ${{github.workspace}}/build --target RodinCoverage | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| files: ${{github.workspace}}/build/RodinCoverage.info | |
| token: ${{ secrets.CODECOV_TOKEN }} | |